Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.busybox.net/busybox.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
author"Robert P. J. Day" <rpjday@mindspring.com>2006-07-18 15:33:44 +0400
committer"Robert P. J. Day" <rpjday@mindspring.com>2006-07-18 15:33:44 +0400
commitfc2aea1a76d0d312405aac691daedcf849ae78ed (patch)
tree9b62e7b0d2d82bbc372489c8c996b504bc17b9a8 /debianutils
parentf0623a2c98c02b07bc886171f147b522b0f66d94 (diff)
Rearrange order of type qualifiers.
Diffstat (limited to 'debianutils')
-rw-r--r--debianutils/which.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/debianutils/which.c b/debianutils/which.c
index 35c21e181..8dd20d097 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(const char * const a, struct stat *b)
{
return (!access(a,X_OK) && !stat(a, b) && S_ISREG(b->st_mode));
}