Fix: incorrect cast in ust consumer assert
[lttng-tools.git] / src / common / ust-consumer / ust-consumer.c
index 93f8f50a91a60a3c05ce90852d59221244584a03..166bb9ebb44030635d4dcbdd541b9d3c835b7181 100644 (file)
@@ -2143,7 +2143,7 @@ int lttng_ustconsumer_data_pending(struct lttng_consumer_stream *stream)
                 */
                DBG("UST consumer metadata pending check: contiguous %" PRIu64 " vs pushed %" PRIu64,
                                contiguous, pushed);
-               assert(((int64_t) contiguous - pushed) >= 0);
+               assert(((int64_t) (contiguous - pushed)) >= 0);
                if ((contiguous != pushed) ||
                                (((int64_t) contiguous - pushed) > 0 || contiguous == 0)) {
                        ret = 1;        /* Data is pending */
This page took 0.023316 seconds and 4 git commands to generate.