Revision: 76534
          http://sourceforge.net/p/brlcad/code/76534
Author:   brlcad
Date:     2020-07-27 20:28:31 +0000 (Mon, 27 Jul 2020)
Log Message:
-----------
ugh, terrible readability

Modified Paths:
--------------
    brlcad/trunk/src/libged/gqa/gqa.c

Modified: brlcad/trunk/src/libged/gqa/gqa.c
===================================================================
--- brlcad/trunk/src/libged/gqa/gqa.c   2020-07-27 20:11:12 UTC (rev 76533)
+++ brlcad/trunk/src/libged/gqa/gqa.c   2020-07-27 20:28:31 UTC (rev 76534)
@@ -642,7 +642,9 @@
                break;
            case 'P':
                /* cannot ask for more cpu's than the machine has */
-               if ((c=atoi(bu_optarg)) > 0 && c <= max_cpus) ncpu = c;
+               c = atoi(bu_optarg);
+               if (c > 0 && c <= max_cpus)
+                   ncpu = c;
                break;
            case 'q':
                quiet_missed_report = 1;

This was sent by the SourceForge.net collaborative development platform, the 
world's largest Open Source development site.



_______________________________________________
BRL-CAD Source Commits mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/brlcad-commits

Reply via email to