mirror of
https://github.com/NixOS/nix
synced 2025-06-28 17:51:15 +02:00
Remove redundant quotes
This commit is contained in:
parent
8674792eba
commit
c32441f207
1 changed files with 1 additions and 1 deletions
|
@ -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);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue