Made full_fname()'s char-pointer arg const.

This commit is contained in:
Wayne Davison
2004-05-24 08:10:22 +00:00
parent f1dd0f27cb
commit 9a5ade185c

2
util.c
View File

@@ -888,7 +888,7 @@ int pop_dir(char *dir)
* The string " (in MODNAME)" may also be appended. The returned pointer
* remains valid until the next time full_fname() is called.
**/
char *full_fname(char *fn)
char *full_fname(const char *fn)
{
static char *result = NULL;
char *m1, *m2, *m3;