diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/factor.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/factor.c b/src/factor.c index 28223733c..f2d26976d 100644 --- a/src/factor.c +++ b/src/factor.c @@ -136,7 +136,7 @@ do_stdin () &tokenbuffer); if (token_length < 0) break; - /* FIXME: Use xstrtoul, not atoi. */ + /* FIXME: Use strtoul, not atoi. */ print_factors ((unsigned long) atoi (tokenbuffer.buffer)); } free (tokenbuffer.buffer); |