]> granicus.if.org Git - graphviz/commitdiff
bcomps: remove unnecessary parens
authorMatthew Fernandez <matthew.fernandez@gmail.com>
Sat, 13 Nov 2021 03:30:47 +0000 (19:30 -0800)
committerMatthew Fernandez <matthew.fernandez@gmail.com>
Fri, 19 Nov 2021 01:52:33 +0000 (17:52 -0800)
cmd/tools/bcomps.c

index 2648fd004b01f342ea1e99b4c190b99d2199c1f0..6bb1acb85177d3d3ff8b1be0f0b2fe5d4ffb5a27 100644 (file)
@@ -113,7 +113,7 @@ static char *getName(int ng, int nb)
     char *name;
     static char *buf;
 
-    if ((ng == 0) && (nb == 0))
+    if (ng == 0 && nb == 0)
        name = outfile;
     else {
        if (!buf) {