mirror of
https://github.com/opnsense/src.git
synced 2026-06-09 00:32:25 -04:00
Fix definition of va_start: We don't need to take the address of
va_list. It's a builtin type. gcc 3.1 doesn't care either way, but gcc 3.2 is more picky and doesn't like the former.
This commit is contained in:
parent
468f8a27bb
commit
9ca98629d7
1 changed files with 1 additions and 1 deletions
|
|
@ -43,7 +43,7 @@
|
|||
|
||||
typedef _BSD_VA_LIST_ va_list;
|
||||
|
||||
#define va_start(list, parmN) __builtin_stdarg_start(&(list), parmN)
|
||||
#define va_start(list, parmN) __builtin_stdarg_start(list, parmN)
|
||||
#define va_end __builtin_va_end
|
||||
#define va_arg __builtin_va_arg
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue