mirror of
https://github.com/fish-shell/fish-shell
synced 2025-01-16 06:54:03 +00:00
Fix uvar error message
This used a wstring format when it was a narrow string.
This commit is contained in:
parent
56f52bc693
commit
759d5a1fb3
1 changed files with 1 additions and 1 deletions
|
@ -606,7 +606,7 @@ bool env_universal_t::open_and_acquire_lock(const std::string &path, int *out_fd
|
|||
}
|
||||
#endif
|
||||
const char *error = std::strerror(errno);
|
||||
FLOGF(error, _(L"Unable to open universal variable file '%ls': %s"), path.c_str(),
|
||||
FLOGF(error, _(L"Unable to open universal variable file '%s': %s"), path.c_str(),
|
||||
error);
|
||||
break;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue