diff options
Diffstat (limited to 'ls.c')
-rw-r--r-- | ls.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -605,7 +605,7 @@ static int list_single(struct dnode *dn) | |||
605 | for (i=0; i<=31; i++) { | 605 | for (i=0; i<=31; i++) { |
606 | switch (list_fmt & (1<<i)) { | 606 | switch (list_fmt & (1<<i)) { |
607 | case LIST_INO: | 607 | case LIST_INO: |
608 | printf("%7ld ", dn->dstat.st_ino); | 608 | printf("%7ld ", (long int)dn->dstat.st_ino); |
609 | column += 8; | 609 | column += 8; |
610 | break; | 610 | break; |
611 | case LIST_BLOCKS: | 611 | case LIST_BLOCKS: |