From 9ca98629d7b5f4dbc40b753ddfa572938674f3b7 Mon Sep 17 00:00:00 2001 From: Marcel Moolenaar Date: Fri, 12 Apr 2002 06:50:51 +0000 Subject: [PATCH] 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. --- sys/ia64/include/stdarg.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sys/ia64/include/stdarg.h b/sys/ia64/include/stdarg.h index e8dde78f2d95..b2029b77d907 100644 --- a/sys/ia64/include/stdarg.h +++ b/sys/ia64/include/stdarg.h @@ -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