summaryrefslogtreecommitdiff
path: root/stdio-common
diff options
context:
space:
mode:
authorAndreas Jaeger <aj@suse.de>2001-01-12 17:37:54 +0000
committerAndreas Jaeger <aj@suse.de>2001-01-12 17:37:54 +0000
commit5418805778feaf604acec6d7e092b6c97910f7e0 (patch)
tree7e4cf21f5eae2c7de99aebbcbb20f94bb5f70ed6 /stdio-common
parentff0eee2981f924c25772788361b8a0c02ebc0e82 (diff)
Remove signed warnings.
Diffstat (limited to 'stdio-common')
-rw-r--r--stdio-common/vfscanf.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/stdio-common/vfscanf.c b/stdio-common/vfscanf.c
index b0fc8f00e0..d63fd364a5 100644
--- a/stdio-common/vfscanf.c
+++ b/stdio-common/vfscanf.c
@@ -308,7 +308,7 @@ __vfscanf (FILE *s, const char *format, va_list argptr)
char *str = NULL;
wchar_t *wstr = NULL;
char **strptr = NULL;
- size_t strsize = 0;
+ ssize_t strsize = 0;
/* We must not react on white spaces immediately because they can
possibly be matched even if in the input stream no character is
available anymore. */