mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-10 15:22:04 +00:00
fix missing params for VA_COPY pointed out by Dalibor Topic
<robilad@yahoo.com>
This commit is contained in:
parent
64f74731c5
commit
1d32ff04e6
1 changed files with 1 additions and 1 deletions
|
@ -228,7 +228,7 @@ dstring_clearstr (dstring_t *dstr)
|
|||
#elif defined (HAVE__VA_COPY)
|
||||
# define VA_COPY(a,b) __va_copy (a, b)
|
||||
#else
|
||||
# define VA_COPY memcpy (a, b, sizeof (a))
|
||||
# define VA_COPY(a,b) memcpy (a, b, sizeof (a))
|
||||
#endif
|
||||
|
||||
static int
|
||||
|
|
Loading…
Reference in a new issue