mirror of
https://github.com/MidnightCommander/mc
synced 2025-01-14 07:19:19 +03:00
Corrected data type in printf argument.
This commit is contained in:
parent
9902c1b885
commit
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
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user