about summary refs log tree commit diff
path: root/src/libstore/build.cc
diff options
context:
space:
mode:
Diffstat (limited to 'src/libstore/build.cc')
-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 d2a270259a8c..8f483a90daad 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;
         }