summaryrefslogtreecommitdiff
path: root/src/util.h
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.h
parent00b21c9ee2af7457ce9f05f80144a245d1ef0750 (diff)
fix const related warnings reported by gcc 4.3.3 (via Kapil Hari Paranjape)
Diffstat (limited to 'src/util.h')
-rw-r--r--src/util.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/util.h b/src/util.h
index 7362139..1277a25 100644
--- a/src/util.h
+++ b/src/util.h
@@ -14,8 +14,8 @@
extern "C" {
#endif
- FILE *
- pexecvp(const char *file, char *const argv[], pid_t *pid, char *type);
+ FILE * pexecvp(const char *file, char *const argv[],
+ pid_t *pid, const char *type);
#ifdef __cplusplus
}