1
0
mirror of https://github.com/samba-team/samba.git synced 2024-12-30 13:18:05 +03:00

r5008: 32-bits is the default bitmap size.

This commit is contained in:
Tim Potter 2005-01-26 06:29:10 +00:00 committed by Gerald (Jerry) Carter
parent e983de6ead
commit 493ba2da6b

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($)