Fix message argument type
authorMathieu Desnoyers <mathieu.desnoyers@efficios.com>
Fri, 24 Jun 2011 01:04:13 +0000 (21:04 -0400)
committerMathieu Desnoyers <mathieu.desnoyers@efficios.com>
Fri, 24 Jun 2011 01:04:13 +0000 (21:04 -0400)
Signed-off-by: Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
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.025345 seconds and 4 git commands to generate.