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:
@ -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); \
|
||||
|
Reference in New Issue
Block a user