Browse Source

fix formatting of uint in callback debug stubs

amends bb632d1c.
wip/unchecked-remove
Oswald Buddenhagen 6 years ago
parent
commit
b72800944c
  1. 1
      src/drv_proxy_gen.pl

1
src/drv_proxy_gen.pl

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

Loading…
Cancel
Save