summaryrefslogtreecommitdiffstats
path: root/test/testframe.c
diff options
context:
space:
mode:
Diffstat (limited to 'test/testframe.c')
-rw-r--r--test/testframe.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/testframe.c b/test/testframe.c
index f472b2e..bb760f8 100644
--- a/test/testframe.c
+++ b/test/testframe.c
@@ -643,7 +643,7 @@ TestAlarmOn(void)
/* Get the alarm value from the environment variable, if set */
if (env_val != NULL)
- alarm_sec = (unsigned)HDstrtoul(env_val, (char **)NULL, 10);
+ alarm_sec = (unsigned)strtoul(env_val, (char **)NULL, 10);
/* Set the number of seconds before alarm goes off */
alarm((unsigned)alarm_sec);