diff options
author | 2004-09-25 02:33:41 +0000 | |
---|---|---|
committer | 2004-09-25 02:33:41 +0000 | |
commit | df26cb714794b5b37cf85f9666e84dee3f9cc2fc (patch) | |
tree | 26fb9948b722e69446369cb1077d060bcd71ed6e /lib/libc/stdio/vfprintf.c | |
parent | Senao el-2511cd2ext2m support. Reported and tested by Randy Bender (diff) | |
download | wireguard-openbsd-df26cb714794b5b37cf85f9666e84dee3f9cc2fc.tar.xz wireguard-openbsd-df26cb714794b5b37cf85f9666e84dee3f9cc2fc.zip |
oops
Diffstat (limited to 'lib/libc/stdio/vfprintf.c')
-rw-r--r-- | lib/libc/stdio/vfprintf.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/libc/stdio/vfprintf.c b/lib/libc/stdio/vfprintf.c index 06991fa6244..d703fa3713c 100644 --- a/lib/libc/stdio/vfprintf.c +++ b/lib/libc/stdio/vfprintf.c @@ -31,7 +31,7 @@ */ #if defined(LIBC_SCCS) && !defined(lint) -static char *rcsid = "$OpenBSD: vfprintf.c,v 1.25 2004/09/24 23:25:49 deraadt Exp $"; +static char *rcsid = "$OpenBSD: vfprintf.c,v 1.26 2004/09/25 02:33:41 deraadt Exp $"; #endif /* LIBC_SCCS and not lint */ /* @@ -840,7 +840,7 @@ __find_arguments(fmt0, ap, argtable, argtablesiz) #define ADDTYPE(type) \ ((nextarg >= tablesize) ? \ __grow_type_table(&typetable, &tablesize) : 0, \ - (nextarg > tablemax) ? tablemax = nextarg : 0, + (nextarg > tablemax) ? tablemax = nextarg : 0, \ typetable[nextarg++] = type) #define ADDSARG() \ |