summaryrefslogtreecommitdiff
path: root/user/ls.c
diff options
context:
space:
mode:
Diffstat (limited to 'user/ls.c')
-rw-r--r--user/ls.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/user/ls.c b/user/ls.c
index c649c57..3511d87 100644
--- a/user/ls.c
+++ b/user/ls.c
@@ -43,7 +43,7 @@ ls(char *path)
switch(st.type){
case T_FILE:
- printf(1, "%s %d %d %d\n", fmtname(path), st.type, st.ino, st.size);
+ printf(1, "%s %d %d %l\n", fmtname(path), st.type, st.ino, st.size);
break;
case T_DIR: