CVSROOT: /cvs
Module name: src
Changes by: [email protected] 2019/02/04 19:17:32
Modified files:
bin/ls : print.c
bin/ps : print.c
sbin/fsdb : fsdbutil.c
sbin/savecore : savecore.c
usr.bin/file : file.c
usr.bin/find : ls.c
usr.bin/fstat : fstat.c
usr.sbin/config: mkswap.c sem.c
usr.sbin/procmap: procmap.c
usr.sbin/pstat : pstat.c
Log message:
dev_t is signed to permit passing -1 as an invalid condition, but the
decomposition into major and minor is unsigned, so we should print them
with %u instead of %d.
ok guenther