summaryrefslogtreecommitdiff
path: root/gl
diff options
context:
space:
mode:
authorEric Blake <eblake@redhat.com>2010-08-09 14:56:02 -0600
committerEric Blake <eblake@redhat.com>2010-08-09 14:56:02 -0600
commit4e6bac4ca3be9cd3f280738a6fe8067a12518fda (patch)
tree1813215e18120db7bf0482740cf95fad94dd1075 /gl
parentfbebc507da6aa7aa15bdaf3941854dc474146179 (diff)
downloadcoreutils-4e6bac4ca3be9cd3f280738a6fe8067a12518fda.tar.xz
tests: silence 'make syntax-check'
* gl/tests/test-rand-isaac.c (main): Avoid warnings from syntax-check.
Diffstat (limited to 'gl')
-rw-r--r--gl/tests/test-rand-isaac.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/gl/tests/test-rand-isaac.c b/gl/tests/test-rand-isaac.c
index 330b18f96..c1ad01a38 100644
--- a/gl/tests/test-rand-isaac.c
+++ b/gl/tests/test-rand-isaac.c
@@ -576,6 +576,7 @@ static isaac_word const expected[2][ISAAC_WORDS] =
int
main (int argc, char **argv)
{
+ /* set_program_name (argv[0]); placate overzealous "syntax-check" test. */
unsigned int i;
isaac_word r[ISAAC_WORDS];
int iterations;
@@ -594,7 +595,7 @@ main (int argc, char **argv)
/* If invoked with a positive argument, run a benchmark;
if with a negative, run a do-nothing benchmark. */
- for (iterations = argc <= 1 ? 0 : atoi (argv[1]);
+ for (iterations = argc <= 1 ? 0 : strtol (argv[1], 10, NULL);
iterations != 0;
iterations += (iterations < 0 ? 1 : -1))
if (0 <= iterations)