Fix: incorrect cast in ust consumer assert
authorDavid Goulet <dgoulet@efficios.com>
Wed, 1 Oct 2014 18:32:12 +0000 (14:32 -0400)
committerDavid Goulet <dgoulet@efficios.com>
Wed, 1 Oct 2014 18:32:50 +0000 (14:32 -0400)
Fixes Coverity issue 1068813.

Signed-off-by: David Goulet <dgoulet@efficios.com>
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.0311709999999999 seconds and 4 git commands to generate.