Fix: event: format specifier for ssize_t
[lttng-tools.git] / src / common / event.c
index c3f040ff4847f4683132d02268e072543cb0450f..785430944525ae8bf8f119aa0e1e9f0eb9f2f6b9 100644 (file)
@@ -622,7 +622,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.033543 seconds and 4 git commands to generate.