summaryrefslogtreecommitdiffstats
path: root/loader/popen.c
diff options
context:
space:
mode:
Diffstat (limited to 'loader/popen.c')
-rw-r--r--loader/popen.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/loader/popen.c b/loader/popen.c
index 21edc3c0e..75a15031f 100644
--- a/loader/popen.c
+++ b/loader/popen.c
@@ -24,7 +24,7 @@ FILE * popen(const char * command, const char * type) {
if (strcmp(type, "r") || lastRequest.f)
return NULL;
- if (poptParseArgvString(command, &argc, &argv)) {
+ if (poptParseArgvString(command, &argc, (const char ***) &argv)) {
return NULL;
}