summaryrefslogtreecommitdiff
path: root/src/util.c
diff options
context:
space:
mode:
authorJohannes Hofmann <Johannes.Hofmann@gmx.de>2009-03-04 18:20:11 +0100
committerJohannes Hofmann <Johannes.Hofmann@gmx.de>2009-03-04 18:20:11 +0100
commit365b6bf765a25e6cab087491fd2a5416499256ef (patch)
tree952665e655143a3c99a7d9fff440b0e0e67b7431 /src/util.c
parent00b21c9ee2af7457ce9f05f80144a245d1ef0750 (diff)
fix const related warnings reported by gcc 4.3.3 (via Kapil Hari Paranjape)
Diffstat (limited to 'src/util.c')
-rw-r--r--src/util.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/util.c b/src/util.c
index 48b09ca..8b18398 100644
--- a/src/util.c
+++ b/src/util.c
@@ -12,7 +12,7 @@
#include "util.h"
FILE *
-pexecvp(const char *file, char *const argv[], pid_t *pid, char *type) {
+pexecvp(const char *file, char *const argv[], pid_t *pid, const char *type) {
FILE *iop;
int pdes[2];