1
0
mirror of https://github.com/samba-team/samba.git synced 2025-02-08 05:57:51 +03:00

r5008: 32-bits is the default bitmap size.

(This used to be commit 493ba2da6bb93d080ff92c50d920df8c858f3010)
This commit is contained in:
Tim Potter 2005-01-26 06:29:10 +00:00 committed by Gerald (Jerry) Carter
parent 6026daeec9
commit 27cb4d4672

View File

@ -215,11 +215,10 @@ sub bitmapbase($)
{
my $e = shift;
return "32", if util::has_property($e->{DATA}, "bitmap32bit");
return "16", if util::has_property($e->{DATA}, "bitmap16bit");
return "8", if util::has_property($e->{DATA}, "bitmap8bit");
die("can't calculate bitmap size for $e->{NAME}");
return "32";
}
sub NeededTypedef($)