From a32ac1ad1ccc36d29f30b017197bb2a57feacd1a Mon Sep 17 00:00:00 2001 From: Timo Sirainen Date: Thu, 4 Nov 2010 17:55:47 +0000 Subject: [PATCH] lib-index: Minor error message improvement. --- src/lib-index/mail-transaction-log-file.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/lib-index/mail-transaction-log-file.c b/src/lib-index/mail-transaction-log-file.c index 3fc61501cd..1196a08c92 100644 --- a/src/lib-index/mail-transaction-log-file.c +++ b/src/lib-index/mail-transaction-log-file.c @@ -1505,7 +1505,8 @@ mail_transaction_log_file_map_mmap(struct mail_transaction_log_file *file, if ((uoff_t)st.st_size < file->sync_offset) { mail_transaction_log_file_set_corrupted(file, - "file size shrank"); + "file size shrank (%"PRIuUOFF_T" < %"PRIuUOFF_T")", + (uoff_t)st.st_size, file->sync_offset); return 0; } -- 2.47.3