diff options
author | Frans Kaashoek <[email protected]> | 2019-07-08 15:50:06 -0400 |
---|---|---|
committer | Frans Kaashoek <[email protected]> | 2019-07-08 15:50:06 -0400 |
commit | 2f22a3ed6a8dbdd4dcfb2c0a43dc854a36a59cfc (patch) | |
tree | 189387b82cfd998170d39dfc998de0fc86602544 /user/ls.c | |
parent | 75b0c6fc91c1264aaa5d080d9faeb87c90d02ad3 (diff) | |
parent | 60ed537427c31d320ca4c8778d21d13304285b00 (diff) | |
download | xv6-labs-2f22a3ed6a8dbdd4dcfb2c0a43dc854a36a59cfc.tar.gz xv6-labs-2f22a3ed6a8dbdd4dcfb2c0a43dc854a36a59cfc.tar.bz2 xv6-labs-2f22a3ed6a8dbdd4dcfb2c0a43dc854a36a59cfc.zip |
Merge branch 'riscv-proc' into riscv
Diffstat (limited to 'user/ls.c')
-rw-r--r-- | user/ls.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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: |