diff options
author | Rob Landley <rob@landley.net> | 2006-07-19 21:45:30 +0000 |
---|---|---|
committer | Rob Landley <rob@landley.net> | 2006-07-19 21:45:30 +0000 |
commit | f86a5ba510ef62ab46d14bd0761a1d88289a398d (patch) | |
tree | 9525c65c6d170cc073111b5179d4d6290801b32e /debianutils/which.c | |
parent | 53702e53ba7fed674a885f7ca17c14ca70adb0c0 (diff) |
Remove unnecessary consts.
Diffstat (limited to 'debianutils/which.c')
-rw-r--r-- | debianutils/which.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/debianutils/which.c b/debianutils/which.c index 8dd20d097..b902b64d8 100644 --- a/debianutils/which.c +++ b/debianutils/which.c @@ -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)); } |