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:
@@ -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;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user