cc65 constness workaround.
authorDavid Given <dg@cowlark.com>
Thu, 4 Jun 2015 20:47:21 +0000 (22:47 +0200)
committerDavid Given <dg@cowlark.com>
Thu, 4 Jun 2015 20:47:21 +0000 (22:47 +0200)
Applications/util/ssh.c

index 6236711..f0c6005 100644 (file)
@@ -164,7 +164,7 @@ int main(int argc, char *argval[])
     cprompt = (getuid() == 0) ? "ssh# " : "ssh$ ";
 
     for (;;) {
-        const char **argp = arg;
+        char **argp = arg;
         for (i = 0; i < MAX_ARGS; i++)
             *argp++ = NULL;
         argp = arg;