CVSROOT: /cvs Module name: src Changes by: [email protected] 2017/08/07 05:50:58
Modified files:
sys/kern : subr_disk.c
Log message:
Turns out gcc complains about %02hhx. So simply use %02x instead. This is
accepted by both clang and gcc and safe given that varargs arguments are
promoted to int anyway. Using %h in the kernel is discouraged anyway according
to bluhm@.
Unbreaks the tree on gcc architectures.
ok pirofti@, bluhm@, florian@
