diff --git a/tests/functests/EventDecoderListener.cpp b/tests/functests/EventDecoderListener.cpp index ed56383d..a40fe220 100644 --- a/tests/functests/EventDecoderListener.cpp +++ b/tests/functests/EventDecoderListener.cpp @@ -65,7 +65,7 @@ void EventDecoderListener::OnDebugEvent(DebugEvent &evt) { auto PrintEvent = [](const char *lbl, const DebugEvent &e) { - printf("%20s: seq=%llu, ts=%llu, type=0x%08x, p1=%zu, p2=%zu\n", lbl, e.seq, e.ts, e.type, e.param1, e.param2); + printf("%20s: seq=%llu, ts=%llu, type=0x%08x, p1=%zu, p2=%zu\n", lbl, static_cast(e.seq), static_cast(e.ts), e.type, e.param1, e.param2); }; // lock for the duration of the print, so that we don't mess up the prints