aboutsummaryrefslogtreecommitdiff
path: root/src/libstore
diff options
context:
space:
mode:
Diffstat (limited to 'src/libstore')
-rw-r--r--src/libstore/build.cc5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/libstore/build.cc b/src/libstore/build.cc
index d2a270259..8f483a90d 100644
--- a/src/libstore/build.cc
+++ b/src/libstore/build.cc
@@ -3835,9 +3835,8 @@ void Worker::waitForInput()
int fdMax = 0;
for (auto & i : children) {
for (auto & j : i.fds) {
- if (j >= FD_SETSIZE) {
- throw BuildError("reached FD_SETSIZE limit");
- }
+ if (j >= FD_SETSIZE)
+ throw Error("reached FD_SETSIZE limit");
FD_SET(j, &fds);
if (j >= fdMax) fdMax = j + 1;
}