mirror of
https://github.com/sheumann/hush.git
synced 2024-12-22 14:30:31 +00:00
Rearrange order of type qualifiers.
This commit is contained in:
parent
f0623a2c98
commit
fc2aea1a76
@ -17,7 +17,7 @@
|
|||||||
#include <sys/stat.h>
|
#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));
|
return (!access(a,X_OK) && !stat(a, b) && S_ISREG(b->st_mode));
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user