mirror of
https://github.com/fish-shell/fish-shell.git
synced 2025-02-22 23:52:11 +08:00
Fix brace style in one line
This commit is contained in:
parent
d31eceddaf
commit
7efbcc039d
@ -1378,7 +1378,8 @@ class universal_notifier_named_pipe_t : public universal_notifier_t
|
||||
int err = errno;
|
||||
// We explicitly do NOT report an error for ENOENT or EACCESS
|
||||
// This works around #1955, where $XDG_RUNTIME_DIR may get a bogus value under suc
|
||||
if (err != ENOENT && err != EPERM) {
|
||||
if (err != ENOENT && err != EPERM)
|
||||
{
|
||||
report_error(err, L"Unable to make or open a FIFO for universal variables with path '%ls'", vars_path.c_str());
|
||||
}
|
||||
pipe_fd= -1;
|
||||
|
Loading…
x
Reference in New Issue
Block a user