Fix: Remove negative comparison to unsigned value
[babeltrace.git] / formats / lttng-live / lttng-live-comm.c
index 03191cd3ddca98ad72107b7ef90b92155888c87e..5a7d067e4cd55127c539b91b5bc169cebd8d772e 100644 (file)
@@ -706,7 +706,7 @@ retry:
                goto error;
        }
 
                goto error;
        }
 
-       if (len <= 0) {
+       if (len == 0) {
                goto error;
        }
 
                goto error;
        }
 
This page took 0.023663 seconds and 4 git commands to generate.