diff --git a/Userland/Utilities/stat.cpp b/Userland/Utilities/stat.cpp index 62aeee52f9..1d7c3c5c42 100644 --- a/Userland/Utilities/stat.cpp +++ b/Userland/Utilities/stat.cpp @@ -18,6 +18,7 @@ static ErrorOr stat(StringView file, bool should_follow_links) { auto st = TRY(should_follow_links ? Core::System::stat(file) : Core::System::lstat(file)); outln(" File: {}", file); + outln(" Device: {}", st.st_dev); outln(" Inode: {}", st.st_ino); if (S_ISCHR(st.st_mode) || S_ISBLK(st.st_mode)) outln(" Device: {},{}", major(st.st_rdev), minor(st.st_rdev));