mirror of
https://sourceware.org/git/glibc.git
synced 2025-01-11 20:00:07 +00:00
Fix resource/bug-ulimit1 test
ulimit is a variadic function and the second argument must have type long (or unsigned long).
This commit is contained in:
parent
14c8e3a355
commit
d8ecbea3fc
@ -7,7 +7,7 @@ main (void)
|
||||
int retval = 0;
|
||||
long int res;
|
||||
|
||||
res = ulimit (UL_SETFSIZE, 10000);
|
||||
res = ulimit (UL_SETFSIZE, 10000L);
|
||||
printf ("Result of ulimit (UL_SETFSIZE, 10000): %ld\n", res);
|
||||
if (res != 10000)
|
||||
retval = 1;
|
||||
|
Loading…
Reference in New Issue
Block a user