1
1

Corrected data type in printf argument.

Этот коммит содержится в:
Roland Illig 2004-08-15 23:03:08 +00:00
родитель 9902c1b885
Коммит a553518dc7

Просмотреть файл

@ -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
}