diff options
author | Roland McGrath <roland@gnu.org> | 1995-03-13 10:00:11 +0000 |
---|---|---|
committer | Roland McGrath <roland@gnu.org> | 1995-03-13 10:00:11 +0000 |
commit | 67a3a8ac7fef11753205c69da9df9c4ef30f6076 (patch) | |
tree | df9258ef6f20d92185c38bec42a64cf1b23da9ec /stdio | |
parent | 51f753022889f9cb9640947fa347ad1df30718ee (diff) | |
download | glibc-67a3a8ac7fef11753205c69da9df9c4ef30f6076.tar.gz |
* stdio/printf_fp.c (group_number): Cast *GROUPING to unsigned int
to avoid warning.
* sysdeps/generic/sigset.h (__SIGSETFN): Cast result of sizeof to
int to avoid warning.
Diffstat (limited to 'stdio')
-rw-r--r-- | stdio/printf_fp.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/stdio/printf_fp.c b/stdio/printf_fp.c index 10018f01b8..42443fa003 100644 --- a/stdio/printf_fp.c +++ b/stdio/printf_fp.c @@ -929,7 +929,7 @@ guess_grouping (unsigned int intdig_max, const char *grouping, wchar_t sepchar) return 0; groups = 0; - while (intdig_max > *grouping) + while (intdig_max > (unsigned int) *grouping) { ++groups; intdig_max -= *grouping++; @@ -981,7 +981,7 @@ group_number (char *buf, char *bufend, unsigned int intdig_no, else if (*grouping == 0) /* Same grouping repeats. */ --grouping; - } while (intdig_no > *grouping); + } while (intdig_no > (unsigned int) *grouping); /* Copy the remaining ungrouped digits. */ do |