Fix incorrect format qualifiers.
authorGuus Sliepen <guus@tinc-vpn.org>
Thu, 10 Jul 2014 20:41:01 +0000 (22:41 +0200)
committerGuus Sliepen <guus@tinc-vpn.org>
Thu, 10 Jul 2014 20:41:01 +0000 (22:41 +0200)
commit45a30f71572fab8e73c456737b7506b2cf12be25
tree4fc9e341b18325cc1a58c1ed5b084761ba23c322
parentd8ed5cf36d0c6d5a863497674248c8e8b63b9d98
Fix incorrect format qualifiers.

Based on a patch from Etienne Dechamps. We avoid the use of %hhx, since even
though it is C99, not all compilers support it yet. We use %x instead, since
it's guaranteed that the minimum size of function arguments on the stack or in
registers is that of an int.
src/multicast_device.c
src/route.c
src/subnet_parse.c