Fix brace style in one line

This commit is contained in:
ridiculousfish 2015-06-01 23:03:23 -07:00
parent d31eceddaf
commit 7efbcc039d

View File

@ -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;