diff --git a/env_universal_common.cpp b/env_universal_common.cpp index f1c65fb55..f90cc82bf 100644 --- a/env_universal_common.cpp +++ b/env_universal_common.cpp @@ -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;