]> granicus.if.org Git - graphviz/commitdiff
remove some unnecessary bracketing in memiofread
authorMatthew Fernandez <matthew.fernandez@gmail.com>
Tue, 22 Jun 2021 04:08:33 +0000 (21:08 -0700)
committerMatthew Fernandez <matthew.fernandez@gmail.com>
Sat, 26 Jun 2021 00:03:55 +0000 (17:03 -0700)
lib/cgraph/io.c

index 147de0d21dd4daa794bbd04c70a3ac2c57bd7070..402ebf90c5992be35e520e7638b196b7b5cda2ab 100644 (file)
@@ -66,7 +66,7 @@ memiofread(void *chan, char *buf, int bufsize)
         * and next character is non-null (we are working with
         * null-terminated strings.
         */
-    } while ((c != '\n') && (l < bufsize) && (c = *ptr++));
+    } while (c != '\n' && l < bufsize && (c = *ptr++));
     s->cur += l;
     return l;
 }