We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1290c48 commit 8bb4071Copy full SHA for 8bb4071
tests/core/test_statvfs.c
@@ -17,12 +17,12 @@ int main() {
17
18
printf("f_bsize: %lu\n", s.f_bsize);
19
printf("f_frsize: %lu\n", s.f_frsize);
20
- printf("f_blocks: %u\n", s.f_blocks);
21
- printf("f_bfree: %u\n", s.f_bfree);
22
- printf("f_bavail: %u\n", s.f_bavail);
+ printf("f_blocks: %llu\n", s.f_blocks);
+ printf("f_bfree: %llu\n", s.f_bfree);
+ printf("f_bavail: %llu\n", s.f_bavail);
23
printf("f_files: %d\n", s.f_files > 5);
24
- printf("f_ffree: %u\n", s.f_ffree);
25
- printf("f_favail: %u\n", s.f_favail);
+ printf("f_ffree: %llu\n", s.f_ffree);
+ printf("f_favail: %llu\n", s.f_favail);
26
printf("f_fsid: %lu\n", s.f_fsid);
27
printf("f_flag: %lu\n", s.f_flag);
28
printf("f_namemax: %lu\n", s.f_namemax);
0 commit comments