diff options
author | Andreas Jaeger <aj@suse.de> | 2001-01-12 17:03:52 +0000 |
---|---|---|
committer | Andreas Jaeger <aj@suse.de> | 2001-01-12 17:03:52 +0000 |
commit | 2e47aff5ac000a9e1ab521fd8e880a1e39714710 (patch) | |
tree | fbda5c4dac146587e481251c0e95e839eba41752 /posix | |
parent | 5ef50d00ded8bb0934c2aef6c9f06acf23f66cb7 (diff) | |
download | glibc-2e47aff5ac000a9e1ab521fd8e880a1e39714710.zip glibc-2e47aff5ac000a9e1ab521fd8e880a1e39714710.tar.gz glibc-2e47aff5ac000a9e1ab521fd8e880a1e39714710.tar.bz2 |
* posix/fnmatch_loop.c (FCT): Remove signed warnings.
* posix/wordexp.c (do_parse_glob): Likewise.
* sysdeps/posix/sigblock.c (__sigblock): Likewise.
* sysdeps/posix/sigsetmask.c (__sigsetmask): Likewise.
* elf/dl-open.c (_dl_open): Likewise.
* elf/dl-close.c (_dl_close): Likewise.
* elf/dl-load.c (_dl_map_object): Likewise.
* iconv/iconv_prog.c (process_fd): Likewise.
Diffstat (limited to 'posix')
-rw-r--r-- | posix/fnmatch_loop.c | 6 | ||||
-rw-r--r-- | posix/wordexp.c | 4 |
2 files changed, 5 insertions, 5 deletions
diff --git a/posix/fnmatch_loop.c b/posix/fnmatch_loop.c index 4c619ed..24a72e2 100644 --- a/posix/fnmatch_loop.c +++ b/posix/fnmatch_loop.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991-1993, 1996-1999, 2000 Free Software Foundation, Inc. +/* Copyright (C) 1991-1993, 1996-2000, 2001 Free Software Foundation, Inc. This file is part of the GNU C Library. This library is free software; you can redistribute it and/or @@ -438,7 +438,7 @@ FCT (pattern, string, no_leading_period, flags) const int32_t *symb_table; # ifdef WIDE_CHAR_VERSION char str[c1]; - int strcnt; + unsigned int strcnt; # else # define str (startp + 1) # endif @@ -643,7 +643,7 @@ FCT (pattern, string, no_leading_period, flags) const int32_t *symb_table; # ifdef WIDE_CHAR_VERSION char str[c1]; - int strcnt; + unsigned int strcnt; # else # define str (startp + 1) # endif diff --git a/posix/wordexp.c b/posix/wordexp.c index 4bd84dd..82765e1 100644 --- a/posix/wordexp.c +++ b/posix/wordexp.c @@ -1,5 +1,5 @@ /* POSIX.2 wordexp implementation. - Copyright (C) 1997, 1998, 1999, 2000 Free Software Foundation, Inc. + Copyright (C) 1997, 1998, 1999, 2000, 2001 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Tim Waugh <tim@cyberelk.demon.co.uk>. @@ -382,7 +382,7 @@ do_parse_glob (const char *glob_word, char **word, size_t *word_length, const char *ifs_white) { int error; - int match; + unsigned int match; glob_t globbuf; error = glob (glob_word, GLOB_NOCHECK, NULL, &globbuf); |