mirror of
https://github.com/fish-shell/fish-shell.git
synced 2026-06-01 21:21:15 -03:00
Attempt to silence some warnings
This commit is contained in:
@@ -464,7 +464,7 @@ static wcstring full_escape(const wchar_t *in)
|
||||
{
|
||||
out.push_back(c);
|
||||
}
|
||||
else if (c <= ASCII_MAX)
|
||||
else if (c <= (wchar_t)ASCII_MAX)
|
||||
{
|
||||
// See #1225 for discussion of use of ASCII_MAX here
|
||||
append_format(out, L"\\x%.2x", c);
|
||||
|
||||
Reference in New Issue
Block a user