more FILE_OFFSET_BITS == 64 adjustments.

This commit is contained in:
Eric Andersen
2001-04-05 23:26:44 +00:00
parent 83f173b61e
commit 250a221768
6 changed files with 12 additions and 12 deletions

2
ls.c
View File

@@ -655,7 +655,7 @@ static int list_single(struct dnode *dn)
#endif
{
#if _FILE_OFFSET_BITS == 64
printf("%9lld ", dn->dstat.st_size);
printf("%9lld ", (long long)dn->dstat.st_size);
#else
printf("%9ld ", dn->dstat.st_size);
#endif