diff options
author | Tobias Geerinckx-Rice <me@tobias.gr> | 2023-12-10 01:00:00 +0100 |
---|---|---|
committer | Tobias Geerinckx-Rice <me@tobias.gr> | 2023-12-17 01:00:00 +0100 |
commit | 892ec53b7eedf998afa149b9cdd169f0cab8f41d (patch) | |
tree | 350c0cd709741a7f950cdcd024e3f9d6d971749f /nix/libstore | |
parent | 766822aa87b94eacb3c49fd68261ae4ce9088a56 (diff) | |
download | guix-892ec53b7eedf998afa149b9cdd169f0cab8f41d.tar guix-892ec53b7eedf998afa149b9cdd169f0cab8f41d.tar.gz |
daemon: Fix my own whitespace errors.
This follows up on commit d993ed43b2bae8717437aa27d9d33fd223a6411f and
was entirely predictable. The noise, sorry for it.
Change-Id: I8ddb8cfe33db3864949f6589cc091616a90ebc5b
Diffstat (limited to 'nix/libstore')
-rw-r--r-- | nix/libstore/build.cc | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/nix/libstore/build.cc b/nix/libstore/build.cc index 54555b92d7..461fcbc584 100644 --- a/nix/libstore/build.cc +++ b/nix/libstore/build.cc @@ -2155,11 +2155,11 @@ void DerivationGoal::runChild() int cur = personality(0xffffffff); if (cur != -1) personality(cur | ADDR_NO_RANDOMIZE); - /* Ask the kernel to eagerly kill us & our children if it runs out of - memory, regardless of blame, to preserve ‘real’ user data & state. */ - try { - writeFile("/proc/self/oom_score_adj", "1000"); // 100% - } catch (...) { ignoreException(); } + /* Ask the kernel to eagerly kill us & our children if it runs out of + memory, regardless of blame, to preserve ‘real’ user data & state. */ + try { + writeFile("/proc/self/oom_score_adj", "1000"); // 100% + } catch (...) { ignoreException(); } #endif /* Fill in the environment. */ |