From: "Robert P. J. Day" Date: Tue, 18 Jul 2006 11:33:44 +0000 (-0000) Subject: Rearrange order of type qualifiers. X-Git-Tag: 1_2_0~4 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=fc2aea1a76d0d312405aac691daedcf849ae78ed;p=oweals%2Fbusybox.git Rearrange order of type qualifiers. --- 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 -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)); }