summaryrefslogtreecommitdiffstats
path: root/lib/libc
diff options
context:
space:
mode:
authorguenther <guenther@openbsd.org>2010-10-17 20:26:51 +0000
committerguenther <guenther@openbsd.org>2010-10-17 20:26:51 +0000
commit6b017ab7aadc8627f5b0a6d417e0e23d74256428 (patch)
tree6a1ccd8b5c67081b52efd3c1e71b44eb23eeea08 /lib/libc
parentvarious tweaks for consistency; (diff)
downloadwireguard-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.c4
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;