Fix: event: format specifier for ssize_t
[lttng-tools.git] / src / common / event.cpp
index 9525d7132fa9d80e81b5e46f598fb81aef3265fa..6dca04def6e082527338da51694af1605546787a 100644 (file)
@@ -621,7 +621,7 @@ deserialize_event_type_payload:
                }
 
                if (ret != event_comm->userspace_probe_location_len) {
-                       WARN("Userspace probe location from the received buffer is not the advertised length: header length = %" PRIu32 ", payload length = %lu", event_comm->userspace_probe_location_len, ret);
+                       WARN("Userspace probe location from the received buffer is not the advertised length: header length = %" PRIu32 ", payload length = %zd", event_comm->userspace_probe_location_len, ret);
                        ret = -1;
                        goto end;
                }
This page took 0.023521 seconds and 4 git commands to generate.