diff options
Diffstat (limited to 'src/main.c')
-rw-r--r-- | src/main.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -584,9 +584,9 @@ main (int argc, char *argv[]) for (i=0; i<cmd_count; i++) { if (screen_arg) - send_command (interactive, command[i], screen_num); + send_command (interactive, (unsigned char *)command[i], screen_num); else - send_command (interactive, command[i], -1); + send_command (interactive, (unsigned char *)command[i], -1); free (command[i]); } |