In article <20170316010924.ea492f...@cvs.netbsd.org>, Maya Rashish <source-changes-d@NetBSD.org> wrote: >Module Name: src >Committed By: maya >Date: Thu Mar 16 01:09:24 UTC 2017 > >Modified Files: > src/sys/ufs/lfs: lfs_inode.c lfs_vnops.c > >Log Message: >actually cast to unsigned long long and use %llu. certainly not use hex (oops) >suggested by dh
I think using (uintmax_t) and %ju is preferrable since this is the guaranteed biggest unsigned type. christos