From 2e622fbfe9ff6bf33d09b79df754b6b9c6cd1f7a Mon Sep 17 00:00:00 2001 From: landley Date: Wed, 19 Jul 2006 21:45:30 +0000 Subject: Remove unnecessary consts. git-svn-id: svn://busybox.net/trunk/busybox@15729 69ca8d6d-28ef-0310-b511-8ec308f3f277 --- debianutils/which.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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)); } -- cgit v1.2.3-55-g6feb