Fix message argument type
[lttng-tools.git] / ltt-sessiond / kernel-ctl.c
index bf25de62f3be82ee738193684236cc0056c7bce5..1abd4cef1e6c242b3451ad940969d7fc964b53de 100644 (file)
@@ -318,7 +318,7 @@ ssize_t kernel_list_events(int tracer_fd, char **list)
 
        while ((size = getline(&line, &nb, fp)) != -1) {
                if (total + size > nbmem) {
-                       DBG("Reallocating event list from %ld to %ld bytes", nbmem,
+                       DBG("Reallocating event list from %zd to %zd bytes", nbmem,
                                        total + size + KERNEL_EVENT_LIST_SIZE);
                        /* Adding the default size again */
                        nbmem = total + size + KERNEL_EVENT_LIST_SIZE;
This page took 0.023569 seconds and 4 git commands to generate.