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:12 +0000 (14:32 -0400)
Fixes Coverity issue 1068813.

Signed-off-by: David Goulet <dgoulet@efficios.com>
src/common/ust-consumer/ust-consumer.c

index 01f79d68fe6e4c50feb4a6983ef8b51fd4aed21a..bff360edb18165a9f7f70cd48c1dc9892ffcaf93 100644 (file)
@@ -2144,7 +2144,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.02897 seconds and 5 git commands to generate.