From a553518dc7f9fb83153f3fabacab6ae00f1415b2 Mon Sep 17 00:00:00 2001 From: Roland Illig Date: Sun, 15 Aug 2004 23:03:08 +0000 Subject: [PATCH] Corrected data type in printf argument. --- src/info.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/info.c b/src/info.c index 5cb247a94..7d367521a 100644 --- a/src/info.c +++ b/src/info.c @@ -163,7 +163,7 @@ info_show_info (struct WInfo *info) printw (_("Size: %s"), buffer); #ifdef HAVE_STRUCT_STAT_ST_BLOCKS printw ((st.st_blocks==1) ? - _(" (%d block)") : _(" (%d blocks)"), st.st_blocks); + _(" (%d block)") : _(" (%d blocks)"), (int) st.st_blocks); #endif }