From: Jim Meyering Date: Sun, 26 Jan 1997 04:52:32 +0000 (+0000) Subject: (print_factors): Reflect changes to xstrtoul interface. X-Git-Tag: TEXTUTILS-1_21a~5 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=a95088a5eaafde7f394c2a51e58289c236da5a15;p=thirdparty%2Fcoreutils.git (print_factors): Reflect changes to xstrtoul interface. --- diff --git a/src/factor.c b/src/factor.c index 1fd0f65d8d..6735903382 100644 --- a/src/factor.c +++ b/src/factor.c @@ -136,7 +136,7 @@ print_factors (const char *s) int n_factors; int i; - if (xstrtoul (s, NULL, 10, &n, NULL) != LONGINT_OK) + if (xstrtoul (s, NULL, 10, &n, "") != LONGINT_OK) { error (0, 0, _("`%s' is not a valid positive integer"), s); return 1;