summaryrefslogtreecommitdiffstats
path: root/commands
diff options
context:
space:
mode:
authorMarc Kleine-Budde <mkl@pengutronix.de>2007-11-12 15:58:53 +0100
committerMarc Kleine-Budde <mkl@pengutronix.de>2007-11-12 15:58:53 +0100
commit57cae4e82669748f94fad4d741c3fcf9cde128ac (patch)
tree5b1f0466cf3dd63d0878d3d19f71339002294db2 /commands
parentfcfd25606c7387a3e0e9c6d85aca88d97159ae70 (diff)
parente3b2a8f972b6ca224dee9edc1ead369c6b8ed350 (diff)
downloadbarebox-57cae4e82669748f94fad4d741c3fcf9cde128ac.tar.gz
barebox-57cae4e82669748f94fad4d741c3fcf9cde128ac.tar.xz
Merge branch 'ipe337'
Diffstat (limited to 'commands')
-rw-r--r--commands/ls.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/commands/ls.c b/commands/ls.c
index 6b88688426..276b5e2893 100644
--- a/commands/ls.c
+++ b/commands/ls.c
@@ -34,7 +34,7 @@ static void ls_one(const char *path, struct stat *s)
unsigned long namelen = strlen(path);
mkmodestr(s->st_mode, modestr);
- printf("%s %8d %*.*s\n",modestr, s->st_size, namelen, namelen, path);
+ printf("%s %10u %*.*s\n", modestr, s->st_size, namelen, namelen, path);
}
int ls(const char *path, ulong flags)