Remove unnecessary consts. 1_2_0
authorRob Landley <rob@landley.net>
Wed, 19 Jul 2006 21:45:30 +0000 (21:45 -0000)
committerRob Landley <rob@landley.net>
Wed, 19 Jul 2006 21:45:30 +0000 (21:45 -0000)
debianutils/which.c

index 8dd20d0978e7462dbb52e365752c2feda17b33fb..b902b64d82af303912228a6d47b58a81b34ef511 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(char *a, struct stat *b)
 {
        return (!access(a,X_OK) && !stat(a, b) && S_ISREG(b->st_mode));
 }