commit | 6ad96ea16ee54578391bb4ca88d047ac9d3654fc | [log] [tgz] |
---|---|---|
author | hasso <hasso> | Thu Oct 07 19:33:46 2004 +0000 |
committer | hasso <hasso> | Thu Oct 07 19:33:46 2004 +0000 |
tree | 7a09427aaafcc48fe644ed4c2e6804005732b88f | |
parent | 015253c3f14cacad85a761fae0259ad32f083d4a [diff] [blame] |
Make more strings const.
diff --git a/lib/pid_output.c b/lib/pid_output.c index 2d90afc..fca7ec8 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 @@ #ifdef HAVE_FCNTL pid_t -pid_output_lock (char *path) +pid_output_lock (const char *path) { int tmp; int fd;