On Sun, Mar 29, 2009 at 07:07:06AM +0900, Izumi Tsutsui wrote: > > Modified Files: > > src/sbin/newfs_msdos: newfs_msdos.c > > > > Log Message: > > Add a cast to intmax_t and use %jd to print an off_t. > > Fixes at least the alpha and amd64 builds. > > Why not PRId64?
It is future-safe. E.g. consider when in a few years we have to switch to 128bit off_t. Joerg