diff options
author | Jim Meyering <jim@meyering.net> | 1996-05-16 04:13:52 +0000 |
---|---|---|
committer | Jim Meyering <jim@meyering.net> | 1996-05-16 04:13:52 +0000 |
commit | 699808bcad98119afd7a564151b446eebabe8fb1 (patch) | |
tree | 371d5336a80297480373c2752644d9092f3e1f0d | |
parent | 7176037aa2f5f4f1a9c15d7281608623ceff3aaa (diff) | |
download | coreutils-699808bcad98119afd7a564151b446eebabe8fb1.tar.xz |
(do_link): Declare pointer parameters to be const.
-rw-r--r-- | src/ln.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -125,7 +125,7 @@ static struct option const long_options[] = Return 1 if there is an error, otherwise 0. */ static int -do_link (char *source, char *dest) +do_link (const char *source, const char *dest) { struct stat source_stats; struct stat dest_stats; |