From: Rob Landley Date: Wed, 19 Jul 2006 21:45:30 +0000 (-0000) Subject: Remove unnecessary consts. X-Git-Tag: 1_2_0^0 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=f86a5ba510ef62ab46d14bd0761a1d88289a398d;p=oweals%2Fbusybox.git Remove unnecessary consts. --- 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 -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)); }