diff options
author | hasso <hasso> | 2004-10-07 19:33:46 +0000 |
---|---|---|
committer | hasso <hasso> | 2004-10-07 19:33:46 +0000 |
commit | 5574eba1944128cda1b8d81f396f1aa1058d842c (patch) | |
tree | 5417fbfa11372e9ee9383d8dbc85553d0330d0d8 /lib/pid_output.c | |
parent | 353cb3db08090c7964a633548a686b099b03e860 (diff) | |
download | quagga-5574eba1944128cda1b8d81f396f1aa1058d842c.tar.bz2 quagga-5574eba1944128cda1b8d81f396f1aa1058d842c.tar.xz |
Make more strings const.
Diffstat (limited to 'lib/pid_output.c')
-rw-r--r-- | lib/pid_output.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/pid_output.c b/lib/pid_output.c index 2d90afca..fca7ec83 100644 --- a/lib/pid_output.c +++ b/lib/pid_output.c @@ -24,10 +24,10 @@ #include <fcntl.h> #include <log.h> -pid_t pid_output_lock(char *); +pid_t pid_output_lock(const char *); pid_t -pid_output (char *path) +pid_output (const char *path) { #ifndef HAVE_FCNTL FILE *fp; @@ -54,7 +54,7 @@ pid_output (char *path) #ifdef HAVE_FCNTL pid_t -pid_output_lock (char *path) +pid_output_lock (const char *path) { int tmp; int fd; |