From: David Given Date: Thu, 4 Jun 2015 20:47:21 +0000 (+0200) Subject: cc65 constness workaround. X-Git-Url: https://git.ndcode.org/public/gitweb.cgi?a=commitdiff_plain;h=e7ebaaf02e87faf41399d7154ef75ab044750280;p=FUZIX.git cc65 constness workaround. --- diff --git a/Applications/util/ssh.c b/Applications/util/ssh.c index 62367114..f0c60056 100644 --- a/Applications/util/ssh.c +++ b/Applications/util/ssh.c @@ -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;