]> err.no Git - moreutils/commitdiff
allow -l 0
authorJoey Hess <joey@gnu.kitenet.net>
Tue, 23 Feb 2010 20:47:16 +0000 (15:47 -0500)
committerJoey Hess <joey@gnu.kitenet.net>
Tue, 23 Feb 2010 20:47:16 +0000 (15:47 -0500)
Now that -l is a decimal value, it makes sense for -l 0.001 and -l 0 to
do effectively the same thing.

parallel.c

index c3b9d67ca10570542af0a047997cca9aec7eb7b9..72f1426541972729a9cf8b9d3b7188e6c28e6d7a 100644 (file)
@@ -202,7 +202,7 @@ int main(int argc, char **argv) {
                getloadavg(&load, 1);
 
                if ((maxjobs == 0 || curjobs < maxjobs) &&
-                   (maxload <= 0 || load < maxload)) {
+                   (maxload < 0 || load < maxload)) {
 
                        if (argsatonce > arglen - argidx)
                                argsatonce = arglen - argidx;