summaryrefslogtreecommitdiff
path: root/src/seq.c
diff options
context:
space:
mode:
authorJim Meyering <jim@meyering.net>1998-05-02 15:36:43 +0000
committerJim Meyering <jim@meyering.net>1998-05-02 15:36:43 +0000
commit45af919ce6c3c2f91afb1604f0e419d52559d609 (patch)
tree8f370e1800490c8660c58c519240a3194d25ee79 /src/seq.c
parent89c9e683a3da26ba3dbee834d519980b67f4e2eb (diff)
downloadcoreutils-45af919ce6c3c2f91afb1604f0e419d52559d609.tar.xz
(check_format): Use ISDIGIT, not isdigit.
Diffstat (limited to 'src/seq.c')
-rw-r--r--src/seq.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/seq.c b/src/seq.c
index a321030a1..887b64655 100644
--- a/src/seq.c
+++ b/src/seq.c
@@ -1,5 +1,5 @@
/* seq - print sequence of numbers to standard output.
- Copyright (C) 94, 95, 96, 1997 Free Software Foundation, Inc.
+ Copyright (C) 94, 95, 96, 1997, 1998 Free Software Foundation, Inc.
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
@@ -274,7 +274,7 @@ check_format (const char *fmt)
return 0;
fmt += strspn (fmt, "-+#0");
- if (isdigit (*fmt))
+ if (ISDIGIT (*fmt))
{
fmt += strspn (fmt, "012345789");