From: Michael Adam Date: Fri, 11 Sep 2009 13:16:03 +0000 (+0200) Subject: tevent:mksigs: normalize bool -> _Bool X-Git-Tag: talloc-2-0-1~523^2~33 X-Git-Url: http://git.samba.org/?p=amitay%2Fsamba.git;a=commitdiff_plain;h=085c07b7431c7b96b30d29e3753dbd5fa71ff9ce tevent:mksigs: normalize bool -> _Bool Michael --- diff --git a/lib/tevent/script/mksigs.pl b/lib/tevent/script/mksigs.pl index bd76a04a268..a34950b09a6 100755 --- a/lib/tevent/script/mksigs.pl +++ b/lib/tevent/script/mksigs.pl @@ -176,5 +176,8 @@ while (my $LINE = <>) { # normalize unsigned $LINE =~ s/([\s,\(])unsigned([,\)])/$1unsigned int$2/g; + # normalize bool + $LINE =~ s/(\b)bool(\b)/_Bool/g; + print $LINE . "\n"; }