Cleanup: tests: cast console write return value as void
[urcu.git] / tests / benchmark / test_urcu_wfq.c
index 07ab72b4d5870a808137f5cbba39bc9bdd8857ad..deabdbf12307aca0ee339d2cfcf1c77264696fbe 100644 (file)
@@ -350,7 +350,7 @@ int main(int argc, char **argv)
        for (i = 0; i < duration; i++) {
                sleep(1);
                if (verbose_mode)
-                       write (1, ".", 1);
+                       (void) write(1, ".", 1);
        }
 
        test_stop = 1;
This page took 0.023078 seconds and 4 git commands to generate.