]> git.ipfire.org Git - thirdparty/coreutils.git/commitdiff
(check_format): Use ISDIGIT, not isdigit.
authorJim Meyering <jim@meyering.net>
Sat, 2 May 1998 15:36:43 +0000 (15:36 +0000)
committerJim Meyering <jim@meyering.net>
Sat, 2 May 1998 15:36:43 +0000 (15:36 +0000)
src/seq.c

index a321030a15c6bca07c3039b342ad8ed5c3f2070f..887b64655b95a0ef2a1f082feac071a7d8ecac2e 100644 (file)
--- 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");