X-Git-Url: http://git.efficios.com/?a=blobdiff_plain;f=src%2Fplugins%2Futils%2Fmuxer%2Fmsg-iter.cpp;fp=src%2Fplugins%2Futils%2Fmuxer%2Fmsg-iter.cpp;h=2754bb1143c61bc597fc59bbda2c13569039add3;hb=e27adb90396a8c985b7d27004f82c56ff9c31b3d;hp=c3e8c3db1870cc20d3973ab7b6ab828b37020d0d;hpb=e40ac8f6684dbeb4b6a0715baa7b25667b53f1e6;p=babeltrace.git diff --git a/src/plugins/utils/muxer/msg-iter.cpp b/src/plugins/utils/muxer/msg-iter.cpp index c3e8c3db..2754bb11 100644 --- a/src/plugins/utils/muxer/msg-iter.cpp +++ b/src/plugins/utils/muxer/msg-iter.cpp @@ -367,18 +367,17 @@ bool MsgIter::_HeapComparator::operator()( * the oldest one, that is, the one having the smallest * timestamp. */ - BT_CPPLOGT_STR("Timestamp of message A is less than timestamp of message B: oldest=A"); + BT_CPPLOGT("Timestamp of message A is less than timestamp of message B: oldest=A"); return true; } else if (*msgTsA > *msgTsB) { - BT_CPPLOGT_STR( - "Timestamp of message A is greater than timestamp of message B: oldest=B"); + BT_CPPLOGT("Timestamp of message A is greater than timestamp of message B: oldest=B"); return false; } } else if (msgTsA && !msgTsB) { - BT_CPPLOGT_STR("Message A has a timestamp, but message B has none: oldest=B"); + BT_CPPLOGT("Message A has a timestamp, but message B has none: oldest=B"); return false; } else if (!msgTsA && msgTsB) { - BT_CPPLOGT_STR("Message B has a timestamp, but message A has none: oldest=A"); + BT_CPPLOGT("Message B has a timestamp, but message A has none: oldest=A"); return true; }