1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 03:57:44 +00:00

Kernel+Userland: Make some of the POSIX types larger

Expand the following types from 32-bit to 64-bit:
- blkcnt_t
- blksize_t
- dev_t
- nlink_t
- suseconds_t
- clock_t

This matches their size on other 64-bit systems.
This commit is contained in:
Andreas Kling 2023-04-03 17:21:35 +02:00
parent d8bb32117e
commit b98f537f11
3 changed files with 8 additions and 8 deletions

View file

@ -337,7 +337,7 @@ static bool print_filesystem_object(DeprecatedString const& path, DeprecatedStri
else
printf("%c", st.st_mode & S_IXOTH ? 'x' : '-');
printf(" %3u", st.st_nlink);
printf(" %3lu", st.st_nlink);
auto username = users.get(st.st_uid);
if (!flag_print_numeric && username.has_value()) {