浏览代码

fix formatting of uint in callback debug stubs

amends bb632d1c.
Oswald Buddenhagen 6 年之前
父节点
当前提交
b72800944c
共有 1 个文件被更改,包括 1 次插入0 次删除
  1. 1 0
      src/drv_proxy_gen.pl

+ 1 - 0
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 $_;