Port: cast result of be64toh() to uint64_t for print format
[babeltrace.git] / plugins / ctf / lttng-live / viewer-connection.c
index 13b882774722e470f525105367fe656de5ecc176..2955b938442a56096aa4a5ef2e56ee9f832c86ba 100644 (file)
@@ -195,7 +195,7 @@ static int lttng_live_handshake(struct bt_live_viewer_connection *viewer_connect
        assert(ret_len == sizeof(connect));
 
        BT_LOGD("Received viewer session ID : %" PRIu64,
-                       be64toh(connect.viewer_session_id));
+                       (uint64_t) be64toh(connect.viewer_session_id));
        BT_LOGD("Relayd version : %u.%u", be32toh(connect.major),
                        be32toh(connect.minor));
 
This page took 0.026692 seconds and 4 git commands to generate.