diff options
author | Rob Landley <rob@landley.net> | 2015-03-01 16:43:01 -0600 |
---|---|---|
committer | Rob Landley <rob@landley.net> | 2015-03-01 16:43:01 -0600 |
commit | 5f1f34ae1a227edbb4b0bba7fe99009d4efd94bd (patch) | |
tree | ba1a4312963a9392b92980bce3acd7240d6c780c /toys/other/pmap.c | |
parent | eb4b1143b1f54a96002a83ea961d40d3169e1ae2 (diff) | |
download | toybox-5f1f34ae1a227edbb4b0bba7fe99009d4efd94bd.tar.gz |
Fix several printf_format warnings.
Diffstat (limited to 'toys/other/pmap.c')
-rw-r--r-- | toys/other/pmap.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/toys/other/pmap.c b/toys/other/pmap.c index ab0b61cd..a93ea3ee 100644 --- a/toys/other/pmap.c +++ b/toys/other/pmap.c @@ -53,7 +53,7 @@ void pmap_main(void) if ((toys.optflags & (FLAG_q|FLAG_x)) == FLAG_x) xprintf("Address%*cKbytes PSS Dirty Swap Mode Mapping\n", - (sizeof(long)*2)-4, ' '); + (int)(sizeof(long)*2)-4, ' '); // Loop through mappings for (;;) { |