(portable_chars_only): Remove unnecessary `const'
authorJim Meyering <jim@meyering.net>
Wed, 12 Feb 2003 09:20:47 +0000 (09:20 +0000)
committerJim Meyering <jim@meyering.net>
Wed, 12 Feb 2003 09:20:47 +0000 (09:20 +0000)
in cast to avoid warning from icc.  Reported by Alexandre Duret-Lutz.

src/pathchk.c

index e76abe78bc58bac45a2b030ab9ad428d023e74e3..d84b4b6208c8f61b2a0717fa793c4db069942424 100644 (file)
@@ -1,5 +1,5 @@
 /* pathchk -- check whether pathnames are valid or portable
-   Copyright (C) 1991-2002 Free Software Foundation, Inc.
+   Copyright (C) 1991-2003 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
@@ -232,7 +232,7 @@ portable_chars_only (const char *path)
   const char *p;
 
   for (p = path; *p; ++p)
-    if (portable_chars[(const unsigned char) *p] == 0)
+    if (portable_chars[(unsigned char) *p] == 0)
       {
        error (0, 0, _("path `%s' contains nonportable character `%c'"),
               path, *p);