diff options
-rw-r--r-- | lndir.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -105,7 +105,7 @@ msg (const char * fmt, ...) } static void -mperror (char *s) +mperror (const char *s) { if (curdir) { fprintf (stderr, "%s:\n", curdir); @@ -116,7 +116,7 @@ mperror (char *s) static int -equivalent(char *lname, char *rname, char **p) +equivalent(char *lname, const char *rname, char **p) { char *s; |