From 5bb2b50a3f92c727ddf468df16bbc60a173d3115 Mon Sep 17 00:00:00 2001 From: Sebastiano Tronto Date: Fri, 9 May 2025 18:36:24 +0200 Subject: Other minor fixes --- src/solvers/tables.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/solvers') diff --git a/src/solvers/tables.h b/src/solvers/tables.h index 9147972..53091f9 100644 --- a/src/solvers/tables.h +++ b/src/solvers/tables.h @@ -39,7 +39,7 @@ readtableinfo( if (buf_size < INFOSIZE) { LOG("Error reading table: buffer size is too small " - "(given size %" PRIu64 " is smaller than INFOSIZE = %" + "(given size %zu is smaller than INFOSIZE = %" PRId64 ")\n", buf_size, INFOSIZE); return NISSY_ERROR_BUFFER_SIZE; } @@ -97,7 +97,7 @@ writetableinfo( if (data_size < info->fullsize) { LOG("Error writing table: buffer size is too small " - "(given %" PRId64 " but table requires %" PRId64 ")\n", + "(given %zu but table requires %" PRId64 ")\n", data_size, info->fullsize); return NISSY_ERROR_BUFFER_SIZE; } -- cgit v1.3