mirror of
https://github.com/fish-shell/fish-shell.git
synced 2026-06-13 07:21:13 -03:00
Replace all printf invocations with wprintf
Remember, GNU doesn't allow mixing narrow and wide IO.
This commit is contained in:
@@ -183,7 +183,7 @@ static void output_info_about_char(wchar_t wc) {
|
||||
static bool output_matching_key_name(wchar_t wc) {
|
||||
char *name = sequence_name(wc);
|
||||
if (name) {
|
||||
printf("bind -k %s 'do something'\n", name);
|
||||
wprintf(L"bind -k %s 'do something'\n", name);
|
||||
free(name);
|
||||
return true;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user