From 630543f28cee9c85a569bebd767bb40b2564bd42 Mon Sep 17 00:00:00 2001 From: Mathieu Desnoyers Date: Wed, 29 Feb 2012 22:33:17 -0500 Subject: [PATCH] Fix: consumer printf type should match ssize_t (%zd) Signed-off-by: Mathieu Desnoyers --- src/common/kernel-consumer/kernel-consumer.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/common/kernel-consumer/kernel-consumer.c b/src/common/kernel-consumer/kernel-consumer.c index 608265f96..823b4a28a 100644 --- a/src/common/kernel-consumer/kernel-consumer.c +++ b/src/common/kernel-consumer/kernel-consumer.c @@ -106,7 +106,7 @@ ssize_t lttng_kconsumer_on_read_subbuffer_splice( (unsigned long)offset, fd); ret = splice(fd, &offset, ctx->consumer_thread_pipe[1], NULL, len, SPLICE_F_MOVE | SPLICE_F_MORE); - DBG("splice chan to pipe ret %ld", ret); + DBG("splice chan to pipe ret %zd", ret); if (ret < 0) { errno = -ret; perror("Error in relay splice"); @@ -115,7 +115,7 @@ ssize_t lttng_kconsumer_on_read_subbuffer_splice( ret = splice(ctx->consumer_thread_pipe[0], NULL, outfd, NULL, ret, SPLICE_F_MOVE | SPLICE_F_MORE); - DBG("splice pipe to file %ld", ret); + DBG("splice pipe to file %zd", ret); if (ret < 0) { errno = -ret; perror("Error in file splice"); -- 2.34.1