about summary refs log tree commit diff
path: root/resource
diff options
context:
space:
mode:
authorSzabolcs Nagy <szabolcs.nagy@arm.com>2022-05-06 14:19:54 +0100
committerSzabolcs Nagy <szabolcs.nagy@arm.com>2022-10-28 11:17:18 +0100
commitb4174c28d21e1672ef3cc15a058558e97b8471c6 (patch)
treefad154525bc173635332b46377295fc6c73d1195 /resource
parentb866018f54ad0670ee9b930a14ae6e8960b9f4bf (diff)
downloadglibc-b4174c28d21e1672ef3cc15a058558e97b8471c6.tar.gz
glibc-b4174c28d21e1672ef3cc15a058558e97b8471c6.tar.xz
glibc-b4174c28d21e1672ef3cc15a058558e97b8471c6.zip
Fix resource/bug-ulimit1 test
ulimit is a variadic function and the second argument must have type
long (or unsigned long).

Reviewed-by: Adhemerval Zanella  <adhemerval.zanella@linaro.org>
Diffstat (limited to 'resource')
-rw-r--r--resource/bug-ulimit1.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/resource/bug-ulimit1.c b/resource/bug-ulimit1.c
index 334d7fff04..8dd3ddf493 100644
--- a/resource/bug-ulimit1.c
+++ b/resource/bug-ulimit1.c
@@ -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;