From e7ebaaf02e87faf41399d7154ef75ab044750280 Mon Sep 17 00:00:00 2001 From: David Given Date: Thu, 4 Jun 2015 22:47:21 +0200 Subject: [PATCH] cc65 constness workaround. --- Applications/util/ssh.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; -- 2.34.1