diff options
author | 2010-10-17 20:26:51 +0000 | |
---|---|---|
committer | 2010-10-17 20:26:51 +0000 | |
commit | 6b017ab7aadc8627f5b0a6d417e0e23d74256428 (patch) | |
tree | 6a1ccd8b5c67081b52efd3c1e71b44eb23eeea08 /lib/libc | |
parent | various tweaks for consistency; (diff) | |
download | wireguard-openbsd-6b017ab7aadc8627f5b0a6d417e0e23d74256428.tar.xz wireguard-openbsd-6b017ab7aadc8627f5b0a6d417e0e23d74256428.zip |
The ssizearg member of union arg is pointless if it isn't of type ssize_t
Noted by Claus Assmann
Diffstat (limited to 'lib/libc')
-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 5beb280a2dd..cfacaa24c8d 100644 --- a/lib/libc/stdio/vfprintf.c +++ b/lib/libc/stdio/vfprintf.c @@ -1,4 +1,4 @@ -/* $OpenBSD: vfprintf.c,v 1.58 2009/11/09 00:18:27 kurt Exp $ */ +/* $OpenBSD: vfprintf.c,v 1.59 2010/10/17 20:26:51 guenther Exp $ */ /*- * Copyright (c) 1990 The Regents of the University of California. * All rights reserved. @@ -62,7 +62,7 @@ union arg { unsigned long long ulonglongarg; ptrdiff_t ptrdiffarg; size_t sizearg; - size_t ssizearg; + ssize_t ssizearg; intmax_t intmaxarg; uintmax_t uintmaxarg; void *pvoidarg; |