From b68507d8a530efbcfa113d1e4627ec73ac0f9796 Mon Sep 17 00:00:00 2001 From: Oliver Schmidt Date: Mon, 3 Mar 2014 22:38:41 +0100 Subject: [PATCH] Adjusted spawn files to recent change II. --- src/cl65/spawn-unix.inc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/cl65/spawn-unix.inc b/src/cl65/spawn-unix.inc index 093e35935..1784123ac 100644 --- a/src/cl65/spawn-unix.inc +++ b/src/cl65/spawn-unix.inc @@ -81,7 +81,7 @@ int spawnvp (int Mode attribute ((unused)), const char* File, const char* const } else if (pid == 0) { /* The son - exec the program */ - if (execvp (File, argv) < 0) { + if (execvp (File, (char* const *) argv) < 0) { Error ("Cannot exec `%s': %s", File, strerror (errno)); } -- 2.39.5