1
0
Fork 0
mirror of https://github.com/NixOS/nix synced 2025-06-28 22:01:15 +02:00

Remove redundant quotes

This commit is contained in:
Eelco Dolstra 2025-03-20 20:20:02 +01:00
parent 8674792eba
commit c32441f207

View file

@ -323,7 +323,7 @@ Logger * makeJSONLogger(const std::filesystem::path & path, bool includeNixPrefi
? connect(path) ? connect(path)
: toDescriptor(open(path.c_str(), O_CREAT | O_APPEND | O_WRONLY, 0644)); : toDescriptor(open(path.c_str(), O_CREAT | O_APPEND | O_WRONLY, 0644));
if (!fd) if (!fd)
throw SysError("opening log file '%1%'", path); throw SysError("opening log file %1%", path);
return new JSONFileLogger(std::move(fd), includeNixPrefix); return new JSONFileLogger(std::move(fd), includeNixPrefix);
} }