summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorTodd C. Miller <millert@cvs.openbsd.org>2008-05-16 20:42:53 +0000
committerTodd C. Miller <millert@cvs.openbsd.org>2008-05-16 20:42:53 +0000
commit009e02060654a596ae4a574b19c148d2d6404283 (patch)
tree20147aa154ba655e08e67c64dcad36547eada72d /lib
parentfb0b14380ddc75c830366e9eaeab800a0fb4f690 (diff)
Fix ssize_t vs. size_t mismatch
Diffstat (limited to 'lib')
-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 28659486d59..bdbb7c12271 100644
--- a/lib/libc/stdio/vfprintf.c
+++ b/lib/libc/stdio/vfprintf.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: vfprintf.c,v 1.46 2008/05/16 14:28:53 millert Exp $ */
+/* $OpenBSD: vfprintf.c,v 1.47 2008/05/16 20:42:52 millert Exp $ */
/*-
* Copyright (c) 1990 The Regents of the University of California.
* All rights reserved.
@@ -73,7 +73,7 @@ union arg {
long *plongarg;
long long *plonglongarg;
ptrdiff_t *pptrdiffarg;
- size_t *pssizearg;
+ ssize_t *pssizearg;
intmax_t *pintmaxarg;
#ifdef FLOATING_POINT
double doublearg;