diff options
author | Miod Vallat <miod@cvs.openbsd.org> | 2002-03-25 19:40:31 +0000 |
---|---|---|
committer | Miod Vallat <miod@cvs.openbsd.org> | 2002-03-25 19:40:31 +0000 |
commit | 524ea1ff688b62505f9eca4883805f4d96e1d82c (patch) | |
tree | f22b55390ed3d7ddacd30f164c951c98cb06ff3f /sys/arch | |
parent | ee77112e8ca1413de8a9133ba4ce51bbfdf66411 (diff) |
Gremlins always escape when you commit from the bad tree. An extra semicolon
this time.
Diffstat (limited to 'sys/arch')
-rw-r--r-- | sys/arch/mvme88k/include/va-m88k.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/arch/mvme88k/include/va-m88k.h b/sys/arch/mvme88k/include/va-m88k.h index de3dd103b70..c70f835f855 100644 --- a/sys/arch/mvme88k/include/va-m88k.h +++ b/sys/arch/mvme88k/include/va-m88k.h @@ -1,4 +1,4 @@ -/* $OpenBSD: va-m88k.h,v 1.6 2002/03/23 23:27:13 miod Exp $ */ +/* $OpenBSD: va-m88k.h,v 1.7 2002/03/25 19:40:30 miod Exp $ */ /* This file has local changes by MOTOROLA Thu Sep 9 09:06:29 CDT 1993 Dale Rahn (drahn@pacific) @@ -28,14 +28,14 @@ typedef __va_list __gnuc_va_list; #if defined (_STDARG_H) || defined (_VARARGS_H) #define __va_start_common(AP,FAKE) \ - (AP) = *(__gnuc_va_list *)__builtin_saveregs(); + (AP) = *(__gnuc_va_list *)__builtin_saveregs() #ifdef _STDARG_H /* stdarg.h support */ /* Calling __builtin_next_arg gives the proper error message if LASTARG is not indeed the last argument. */ #define va_start(AP,LASTARG) \ - (__builtin_next_arg (LASTARG), __va_start_common(AP, 0)) + (__builtin_next_arg (LASTARG), __va_start_common (AP, 0)) #else /* varargs.h support */ |