summaryrefslogtreecommitdiff
path: root/src/od.c
diff options
context:
space:
mode:
authorJim Meyering <jim@meyering.net>1997-01-25 06:21:24 +0000
committerJim Meyering <jim@meyering.net>1997-01-25 06:21:24 +0000
commita8bcd782c456fb67229a2271a083cbadfa1bed79 (patch)
tree2763e0649ac7cce6579abece692a039753a6160d /src/od.c
parent2be7ff8311c5497b15fcf60aeaca7df1c4313338 (diff)
downloadcoreutils-a8bcd782c456fb67229a2271a083cbadfa1bed79.tar.xz
update for changed xstrtou?l
Diffstat (limited to 'src/od.c')
-rw-r--r--src/od.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/od.c b/src/od.c
index ec87ccd4e..c3ad92b97 100644
--- a/src/od.c
+++ b/src/od.c
@@ -1776,7 +1776,7 @@ the maximum\nrepresentable value of type `long'"), optarg);
}
else
{
- s_err = xstrtoul (optarg, NULL, 10, &desired_width, NULL);
+ s_err = xstrtoul (optarg, NULL, 10, &desired_width, "");
if (s_err != LONGINT_OK)
STRTOL_FATAL_ERROR (optarg, _("width specification"), s_err);
}