diff options
author | jbj <devnull@localhost> | 1999-07-27 22:05:43 +0000 |
---|---|---|
committer | jbj <devnull@localhost> | 1999-07-27 22:05:43 +0000 |
commit | 3952d8e797bae56a0122ef96b2361686305c4852 (patch) | |
tree | 541af0f587ac2615ba0c2d13d05c3057a490c59b /popt/findme.c | |
parent | 12dacc46fba0fb50e984e11f6d391c9b69f5cf8b (diff) | |
download | rpm-3952d8e797bae56a0122ef96b2361686305c4852.tar.gz rpm-3952d8e797bae56a0122ef96b2361686305c4852.tar.bz2 rpm-3952d8e797bae56a0122ef96b2361686305c4852.zip |
popt: heavy dose of const.
CVS patchset: 3206
CVS date: 1999/07/27 22:05:43
Diffstat (limited to 'popt/findme.c')
-rw-r--r-- | popt/findme.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/popt/findme.c b/popt/findme.c index 1cda62c51..4ba4950e5 100644 --- a/popt/findme.c +++ b/popt/findme.c @@ -22,7 +22,7 @@ #include "findme.h" -char * findProgramPath(char * argv0) { +const char * findProgramPath(const char * argv0) { char * path = getenv("PATH"); char * pathbuf; char * start, * chptr; |