projects
/
oweals
/
busybox.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
53702e5
)
Remove unnecessary consts.
1_2_0
author
Rob Landley
<rob@landley.net>
Wed, 19 Jul 2006 21:45:30 +0000
(21:45 -0000)
committer
Rob Landley
<rob@landley.net>
Wed, 19 Jul 2006 21:45:30 +0000
(21:45 -0000)
debianutils/which.c
patch
|
blob
|
history
diff --git
a/debianutils/which.c
b/debianutils/which.c
index 8dd20d0978e7462dbb52e365752c2feda17b33fb..b902b64d82af303912228a6d47b58a81b34ef511 100644
(file)
--- a/
debianutils/which.c
+++ b/
debianutils/which.c
@@
-17,7
+17,7
@@
#include <sys/stat.h>
-static int is_executable_file(c
onst char * const
a, struct stat *b)
+static int is_executable_file(c
har *
a, struct stat *b)
{
return (!access(a,X_OK) && !stat(a, b) && S_ISREG(b->st_mode));
}