1
0
mirror of https://sourceware.org/git/glibc.git synced 2025-07-30 22:43:12 +03:00

* 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.
This commit is contained in:
Roland McGrath
1995-03-13 10:00:11 +00:00
parent 51f7530228
commit 67a3a8ac7f
3 changed files with 8 additions and 3 deletions

View File

@ -57,7 +57,7 @@ typedef unsigned long int __sigset_t;
_EXTERN_INLINE int \
__##NAME (CONST __sigset_t *__set, int __sig) \
{ \
if (__sig < 1 || __sig > sizeof (__sigset_t) * 8) \
if (__sig < 1 || __sig > (int) sizeof (__sigset_t) * 8) \
{ \
extern int raise (int); \
return raise (-1); \