summaryrefslogtreecommitdiffstats
path: root/commands/ls.c
diff options
context:
space:
mode:
authorSascha Hauer <s.hauer@pengutronix.de>2012-07-02 10:58:32 +0200
committerSascha Hauer <s.hauer@pengutronix.de>2012-07-02 10:58:32 +0200
commita3251562dbdc8dda29da84ac1ab271e927dc8ae0 (patch)
tree8335db3837ca1a04dc81730c0a40e4edbf467179 /commands/ls.c
parent9d0b51ea7e5b3fece57f91e17349b79a5b4b37e7 (diff)
parentcfcfc66d5486c2061316ebcdf32ef2f1ecbda433 (diff)
downloadbarebox-a3251562dbdc8dda29da84ac1ab271e927dc8ae0.tar.gz
barebox-a3251562dbdc8dda29da84ac1ab271e927dc8ae0.tar.xz
Merge branch 'for-next/64bit'
Diffstat (limited to 'commands/ls.c')
-rw-r--r--commands/ls.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/commands/ls.c b/commands/ls.c
index ad609f3133..fbcbadcd08 100644
--- a/commands/ls.c
+++ b/commands/ls.c
@@ -35,7 +35,7 @@ static void ls_one(const char *path, struct stat *s)
unsigned int namelen = strlen(path);
mkmodestr(s->st_mode, modestr);
- printf("%s %10lu %*.*s\n", modestr, s->st_size, namelen, namelen, path);
+ printf("%s %10llu %*.*s\n", modestr, s->st_size, namelen, namelen, path);
}
int ls(const char *path, ulong flags)