Cleanup: tests: cast console write return value as void
[urcu.git] / tests / benchmark / test_urcu_wfcq.c
index d0814cdae08534e1aa2d20bbb257154e5b64677f..bdd5b0928fb9081ae9c312fcdde84b509dd9107d 100644 (file)
@@ -492,7 +492,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.023383 seconds and 4 git commands to generate.