fix formatting of uint in callback debug stubs

amends bb632d1c.
This commit is contained in:
Oswald Buddenhagen 2019-01-05 00:00:10 +01:00
parent acfa3a2bbc
commit b72800944c

View File

@ -109,6 +109,7 @@ sub type_to_format($)
{ {
$_ = shift; $_ = shift;
s/xint /\%\#x/g; s/xint /\%\#x/g;
s/uint /\%u/g;
s/int /\%d/g; s/int /\%d/g;
s/const char \*/\%s/g; s/const char \*/\%s/g;
return $_; return $_;