1
0
mirror of https://github.com/samba-team/samba.git synced 2024-12-23 17:34:34 +03:00

talloc:mksigs: normalize bool -> _Bool

Michael
This commit is contained in:
Michael Adam 2009-09-11 15:16:03 +02:00
parent 82404ad3e4
commit 56c09d2fb2

View File

@ -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";
}