aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--coreutils/ls.c4
-rw-r--r--ls.c4
2 files changed, 4 insertions, 4 deletions
diff --git a/coreutils/ls.c b/coreutils/ls.c
index 77de93a0c..201509210 100644
--- a/coreutils/ls.c
+++ b/coreutils/ls.c
@@ -652,9 +652,9 @@ static int list_single(struct dnode *dn)
(ls_disp_hr==TRUE)? 0: 1));
#else
#if _FILE_OFFSET_BITS == 64
- printf("%9lld ", dn->dstat.st_size>>1);
+ printf("%9lld ", dn->dstat.st_size);
#else
- printf("%9ld ", dn->dstat.st_size>>1);
+ printf("%9ld ", dn->dstat.st_size);
#endif
#endif
}
diff --git a/ls.c b/ls.c
index 77de93a0c..201509210 100644
--- a/ls.c
+++ b/ls.c
@@ -652,9 +652,9 @@ static int list_single(struct dnode *dn)
(ls_disp_hr==TRUE)? 0: 1));
#else
#if _FILE_OFFSET_BITS == 64
- printf("%9lld ", dn->dstat.st_size>>1);
+ printf("%9lld ", dn->dstat.st_size);
#else
- printf("%9ld ", dn->dstat.st_size>>1);
+ printf("%9ld ", dn->dstat.st_size);
#endif
#endif
}