diff options
author | Andreas Jaeger <aj@suse.de> | 2001-01-12 17:37:54 +0000 |
---|---|---|
committer | Andreas Jaeger <aj@suse.de> | 2001-01-12 17:37:54 +0000 |
commit | 5418805778feaf604acec6d7e092b6c97910f7e0 (patch) | |
tree | 7e4cf21f5eae2c7de99aebbcbb20f94bb5f70ed6 | |
parent | ff0eee2981f924c25772788361b8a0c02ebc0e82 (diff) | |
download | glibc-5418805778feaf604acec6d7e092b6c97910f7e0.tar.gz glibc-5418805778feaf604acec6d7e092b6c97910f7e0.tar.xz glibc-5418805778feaf604acec6d7e092b6c97910f7e0.zip |
Remove signed warnings.
-rw-r--r-- | stdio-common/vfscanf.c | 2 |
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. */ |