Cleanup: tests: cast console write return value as void
[urcu.git] / tests / benchmark / test_urcu_wfs.c
index c74f8b72cf1ae177c5bfdbe343e7c3ad058428cb..f64367112020f551ed3ce3d87261537283c78e07 100644 (file)
@@ -480,7 +480,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_enqueue = 1;
This page took 0.022865 seconds and 4 git commands to generate.