mirror of
https://github.com/fish-shell/fish-shell
synced 2025-01-13 21:44:16 +00:00
fix enum warning.
This commit is contained in:
parent
b4a6daef11
commit
a483643626
1 changed files with 1 additions and 1 deletions
|
@ -1436,7 +1436,7 @@ static bool unescape_string_internal(const wchar_t *const input, const size_t in
|
|||
case L'\t':
|
||||
case L' ': {
|
||||
if (unescape_special && brace_count > 0) {
|
||||
to_append_or_none = brace_text_start ? BRACE_SPACE : NOT_A_WCHAR;
|
||||
to_append_or_none = brace_text_start ? wint_t(BRACE_SPACE) : NOT_A_WCHAR;
|
||||
}
|
||||
break;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue