Rearrange order of type qualifiers.
author"Robert P. J. Day" <rpjday@mindspring.com>
Tue, 18 Jul 2006 11:33:44 +0000 (11:33 -0000)
committer"Robert P. J. Day" <rpjday@mindspring.com>
Tue, 18 Jul 2006 11:33:44 +0000 (11:33 -0000)
debianutils/which.c

index 35c21e1818da43bef02f98ffd1bbfbc09770ff5e..8dd20d0978e7462dbb52e365752c2feda17b33fb 100644 (file)
@@ -17,7 +17,7 @@
 #include <sys/stat.h>
 
 
-static int is_executable_file(const char const * a, struct stat *b)
+static int is_executable_file(const char * const a, struct stat *b)
 {
        return (!access(a,X_OK) && !stat(a, b) && S_ISREG(b->st_mode));
 }