diff options
author | Philip Guenthe <guenther@cvs.openbsd.org> | 2010-10-17 20:26:52 +0000 |
---|---|---|
committer | Philip Guenthe <guenther@cvs.openbsd.org> | 2010-10-17 20:26:52 +0000 |
commit | d9fd447d5a2ed71bf0cee4514add94bb8dee8cb1 (patch) | |
tree | 998f525cecdbd1c261be9eaf047b51c55336c2db /lib | |
parent | dad845da61fc82ba6a2b98f1db01017949169f23 (diff) |
The ssizearg member of union arg is pointless if it isn't of type ssize_t
Noted by Claus Assmann
Diffstat (limited to 'lib')
-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; |