diff options
author | 2008-05-16 20:42:52 +0000 | |
---|---|---|
committer | 2008-05-16 20:42:52 +0000 | |
commit | f455737b91f4e81a3212f5977f347f3054260c0e (patch) | |
tree | a5255227e728234f10811ce7a20a6136e75fcf4d /lib/libc/stdio/vfprintf.c | |
parent | add Intel GME965 (diff) | |
download | wireguard-openbsd-f455737b91f4e81a3212f5977f347f3054260c0e.tar.xz wireguard-openbsd-f455737b91f4e81a3212f5977f347f3054260c0e.zip |
Fix ssize_t vs. size_t mismatch
Diffstat (limited to 'lib/libc/stdio/vfprintf.c')
-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 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; |