Convert skip_ctl_c_seq() and its callers (except strip_ansi()) from unsigned char to char

This should make no functional difference, and cuts out a large number of
unsigned char * / char * mismatch warnings.
This commit is contained in:
Kevin Easton
2015-06-17 22:50:49 +10:00
parent 563493dd6a
commit d0b0a95330
10 changed files with 83 additions and 90 deletions

View File

@@ -3144,7 +3144,7 @@ static Window *window_echo (Window *window, char **args, char *usage)
else
to_echo = *args, *args = NULL;
add_to_window(window, (const unsigned char *)to_echo);
add_to_window(window, to_echo);
return window;
}