Fix: unchecked return value in low throughput test
[lttng-tools.git] / tests / regression / ust / low-throughput / main.c
index 06ab9ef825ae20c6c73c08ae7d9091aa0dfceabe..b1c38bc949964740c5ed35e43cc4f5c97c6c68d3 100644 (file)
@@ -34,7 +34,7 @@ static void *th_event_minute(void *data)
        /* Loop for 20 minutes */
        for (i = 1; i < 21; i++) {
                /* Sleep 60 seconds */
-               poll(NULL, 0, 60000);
+               (void) poll(NULL, 0, 60000);
 
                /* 20 minutes tracepoint */
                if ((i % 20) == 0) {
This page took 0.022821 seconds and 4 git commands to generate.