summaryrefslogtreecommitdiff
path: root/ijs
diff options
context:
space:
mode:
authorChris Liddell <chris.liddell@artifex.com>2018-03-16 10:19:43 +0000
committerChris Liddell <chris.liddell@artifex.com>2018-03-26 15:40:51 +0100
commiteb770edd1c4dd9bf6c561f15564e4b8e10cc54b9 (patch)
tree916fd47c9eab942158feccae7ce82f0472943592 /ijs
parent54e6bb1a12448aca3c48cd062946f564d3a9a4d1 (diff)
downloadghostpdl-eb770edd1c4dd9bf6c561f15564e4b8e10cc54b9.tar.gz
Squash compiler warning in ijs code.
Diffstat (limited to 'ijs')
-rw-r--r--ijs/ijs_exec_unix.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ijs/ijs_exec_unix.c b/ijs/ijs_exec_unix.c
index 862961913..622569416 100644
--- a/ijs/ijs_exec_unix.c
+++ b/ijs/ijs_exec_unix.c
@@ -75,7 +75,7 @@ ijs_exec_server(const char *server_cmd, int *pfd_to, int *pfd_from,
argv[i++] = (char *)server_cmd;
argv[i++] = NULL;
- status = execvp (argv[0], argv);
+ status = execvp (argv[0], (char * const *)argv);
if (status < 0)
exit (1);
}