diff options
author | 2016-01-19 18:22:53 +0000 | |
---|---|---|
committer | 2016-01-19 18:22:53 +0000 | |
commit | 09c898c053fe87ef821d997fc547f8fdb43cd781 (patch) | |
tree | 3ed1ea10dc390284701cdca6ba52367ccee2a1e7 /lib/libc/stdio/vfprintf.c | |
parent | Fix a race causing hardclock() to be sometimes invoked between the end (diff) | |
download | wireguard-openbsd-09c898c053fe87ef821d997fc547f8fdb43cd781.tar.xz wireguard-openbsd-09c898c053fe87ef821d997fc547f8fdb43cd781.zip |
remove a nop assignment that has been #if 0'd since 1996
ok millert@
Diffstat (limited to 'lib/libc/stdio/vfprintf.c')
-rw-r--r-- | lib/libc/stdio/vfprintf.c | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/lib/libc/stdio/vfprintf.c b/lib/libc/stdio/vfprintf.c index 3d7d41e103b..70fd5e24b2b 100644 --- a/lib/libc/stdio/vfprintf.c +++ b/lib/libc/stdio/vfprintf.c @@ -1,4 +1,4 @@ -/* $OpenBSD: vfprintf.c,v 1.71 2016/01/04 15:47:47 schwarze Exp $ */ +/* $OpenBSD: vfprintf.c,v 1.72 2016/01/19 18:22:53 mmcc Exp $ */ /*- * Copyright (c) 1990 The Regents of the University of California. * All rights reserved. @@ -1386,10 +1386,6 @@ done: return (-1); } -#if 0 - /* XXX is this required? */ - (*argtable)[0].intarg = 0; -#endif for (n = 1; n <= tablemax; n++) { switch (typetable[n]) { case T_UNUSED: |