From 67a3a8ac7fef11753205c69da9df9c4ef30f6076 Mon Sep 17 00:00:00 2001 From: Roland McGrath Date: Mon, 13 Mar 1995 10:00:11 +0000 Subject: * 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. --- stdio/printf_fp.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'stdio') 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 -- cgit v1.2.3