mirror of
https://github.com/LadybirdBrowser/ladybird
synced 2026-05-09 00:22:36 +02:00
"stat" command should print st_mode in octal.
This commit is contained in:
Notes:
sideshowbarker
2024-07-19 18:47:52 +09:00
Author: https://github.com/awesomekling Commit: https://github.com/SerenityOS/serenity/commit/b0eaca436c1
@@ -152,7 +152,7 @@ int main(int c, char** v)
|
||||
}
|
||||
printf("st_dev: %u\n", st.st_dev);
|
||||
printf("st_ino: %u\n", st.st_ino);
|
||||
printf("st_mode: %u\n", st.st_mode);
|
||||
printf("st_mode: %o\n", st.st_mode);
|
||||
printf("st_nlink: %u\n", st.st_nlink);
|
||||
printf("st_uid: %u\n", st.st_uid);
|
||||
printf("st_gid: %u\n", st.st_gid);
|
||||
|
||||
Reference in New Issue
Block a user