Page Menu
Home
FreeBSD
Search
Configure Global Search
Log In
Files
F172054728
D15131.diff
No One
Temporary
Actions
View File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Flag For Later
Award Token
Size
592 B
Referenced Files
None
Subscribers
None
D15131.diff
View Options
Index: tools/diag/prtblknos/prtblknos.c
===================================================================
--- tools/diag/prtblknos/prtblknos.c
+++ tools/diag/prtblknos/prtblknos.c
@@ -97,14 +97,14 @@
printf("empty file\n");
return;
}
- printf("regular file, size %ld\n", size);
+ printf("regular file, size %jd\n", (uintmax_t)size);
break;
case IFDIR:
if (size == 0) {
printf("empty directory\n");
return;
}
- printf("directory, size %ld\n", size);
+ printf("directory, size %jd\n", (uintmax_t)size);
break;
}
numblks = howmany(size, fs->fs_bsize);
File Metadata
Details
Attached
Mime Type
text/plain
Expires
Wed, Sep 16, 7:11 PM (11 h, 52 m)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
39025874
Default Alt Text
D15131.diff (592 B)
Attached To
Mode
D15131: Fix build on 32-bit platforms
Attached
Detach File
Event Timeline
Log In to Comment