aboutsummaryrefslogtreecommitdiff
path: root/debianutils
diff options
context:
space:
mode:
authorrpjday <rpjday@69ca8d6d-28ef-0310-b511-8ec308f3f277>2006-07-18 11:33:44 +0000
committerrpjday <rpjday@69ca8d6d-28ef-0310-b511-8ec308f3f277>2006-07-18 11:33:44 +0000
commit19884f485382fb5dd73611e2a85eab55be50bb5c (patch)
tree9b62e7b0d2d82bbc372489c8c996b504bc17b9a8 /debianutils
parent49188e530a2393796aba960c47f74f55026589a9 (diff)
downloadbusybox-w32-19884f485382fb5dd73611e2a85eab55be50bb5c.tar.gz
busybox-w32-19884f485382fb5dd73611e2a85eab55be50bb5c.tar.bz2
busybox-w32-19884f485382fb5dd73611e2a85eab55be50bb5c.zip
Rearrange order of type qualifiers.
git-svn-id: svn://busybox.net/trunk/busybox@15716 69ca8d6d-28ef-0310-b511-8ec308f3f277
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 @@
17#include <sys/stat.h> 17#include <sys/stat.h>
18 18
19 19
20static int is_executable_file(const char const * a, struct stat *b) 20static int is_executable_file(const char * const a, struct stat *b)
21{ 21{
22 return (!access(a,X_OK) && !stat(a, b) && S_ISREG(b->st_mode)); 22 return (!access(a,X_OK) && !stat(a, b) && S_ISREG(b->st_mode));
23} 23}