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

tdb:mksigs: normalize bool -> _Bool

Michael
This commit is contained in:
Michael Adam 2009-09-11 15:16:03 +02:00
parent 25939a627f
commit cfa4e7ec75

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