diff options
author | Christian Neukirchen <chneukirchen@gmail.com> | 2015-09-01 15:13:30 +0200 |
---|---|---|
committer | Christian Neukirchen <chneukirchen@gmail.com> | 2015-09-01 15:13:30 +0200 |
commit | 72e27cf6a21273dd79b17aa187b24099ca082ce2 (patch) | |
tree | b6476079813c85447dad17652c583dc2d9b40ac2 | |
parent | f0c8045adf92a0e9c817cb3714442f12908fa291 (diff) | |
download | redo-c-72e27cf6a21273dd79b17aa187b24099ca082ce2.tar.gz redo-c-72e27cf6a21273dd79b17aa187b24099ca082ce2.tar.xz redo-c-72e27cf6a21273dd79b17aa187b24099ca082ce2.zip |
Fix job pool -.-
-rw-r--r-- | redo.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/redo.c b/redo.c index 9990268..7e9a53f 100644 --- a/redo.c +++ b/redo.c @@ -561,8 +561,8 @@ procure(char *target) void create_pool() { - poolrd_fd = envfd("REDO_WR_FD"); - poolwr_fd = envfd("REDO_RD_FD"); + poolrd_fd = envfd("REDO_RD_FD"); + poolwr_fd = envfd("REDO_WR_FD"); if (poolrd_fd < 0 || poolwr_fd < 0) { int jobs = envfd("JOBS"); if (jobs > 1) { |