From 085c07b7431c7b96b30d29e3753dbd5fa71ff9ce Mon Sep 17 00:00:00 2001 From: Michael Adam Date: Fri, 11 Sep 2009 15:16:03 +0200 Subject: tevent:mksigs: normalize bool -> _Bool Michael --- lib/tevent/script/mksigs.pl | 3 +++ 1 file changed, 3 insertions(+) diff --git a/lib/tevent/script/mksigs.pl b/lib/tevent/script/mksigs.pl index bd76a04a26..a34950b09a 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"; } -- cgit