diff options
Diffstat (limited to 'coreutils')
-rw-r--r-- | coreutils/ls.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/coreutils/ls.c b/coreutils/ls.c index c54b6a42f..d9ecf0490 100644 --- a/coreutils/ls.c +++ b/coreutils/ls.c @@ -605,7 +605,7 @@ static int list_single(struct dnode *dn) for (i=0; i<=31; i++) { switch (list_fmt & (1<<i)) { case LIST_INO: - printf("%7ld ", dn->dstat.st_ino); + printf("%7ld ", (long int)dn->dstat.st_ino); column += 8; break; case LIST_BLOCKS: |