diff options
Diffstat (limited to 'elf/sln.c')
-rw-r--r-- | elf/sln.c | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/elf/sln.c b/elf/sln.c index 1a7d24e6dc..3865139504 100644 --- a/elf/sln.c +++ b/elf/sln.c @@ -87,8 +87,7 @@ usage (void) } static int -makesymlinks (file) - const char *file; +makesymlinks (const char *file) { #ifndef PATH_MAX #define PATH_MAX 4095 @@ -163,9 +162,7 @@ makesymlinks (file) } static int -makesymlink (src, dest) - const char *src; - const char *dest; +makesymlink (const char *src, const char *dest) { struct stat stats; const char *error; |