From af5e91e46e5250ffcc35699759f555300359a3d3 Mon Sep 17 00:00:00 2001 From: =?utf8?q?J=C3=A9r=C3=A9mie=20Galarneau?= Date: Tue, 29 Aug 2017 17:59:11 -0400 Subject: [PATCH] src.ctf.fs fix: wrong type specifier used in logging statement MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Signed-off-by: Jérémie Galarneau --- plugins/ctf/fs-src/data-stream-file.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/ctf/fs-src/data-stream-file.c b/plugins/ctf/fs-src/data-stream-file.c index 1a841dd6..5dfdf8e0 100644 --- a/plugins/ctf/fs-src/data-stream-file.c +++ b/plugins/ctf/fs-src/data-stream-file.c @@ -231,7 +231,7 @@ enum bt_ctf_notif_iter_medium_status medop_seek( off_t offset_in_mapping = offset % bt_common_get_page_size(); BT_LOGD("Medium seek request cannot be accomodated by the current " - "file mapping: offset=%jd, mmap-offset=%zu, " + "file mapping: offset=%jd, mmap-offset=%jd, " "mmap-len=%zu", offset, ds_file->mmap_offset, ds_file->mmap_len); unmap_ret = ds_file_munmap(ds_file); -- 2.34.1