summaryrefslogtreecommitdiff
path: root/source4/build/pidl
diff options
context:
space:
mode:
authorTim Potter <tpot@samba.org>2005-01-26 06:29:10 +0000
committerGerald (Jerry) Carter <jerry@samba.org>2007-10-10 13:09:13 -0500
commit27cb4d4672268d3c1b57494e892dbac3d38d5b54 (patch)
tree516921866811d05502ec64799318f9b5d0b9a82f /source4/build/pidl
parent6026daeec963c7e0d2fbe3f46acd543fb0e961a2 (diff)
downloadsamba-27cb4d4672268d3c1b57494e892dbac3d38d5b54.tar.gz
samba-27cb4d4672268d3c1b57494e892dbac3d38d5b54.tar.bz2
samba-27cb4d4672268d3c1b57494e892dbac3d38d5b54.zip
r5008: 32-bits is the default bitmap size.
(This used to be commit 493ba2da6bb93d080ff92c50d920df8c858f3010)
Diffstat (limited to 'source4/build/pidl')
-rw-r--r--source4/build/pidl/eparser.pm3
1 files changed, 1 insertions, 2 deletions
diff --git a/source4/build/pidl/eparser.pm b/source4/build/pidl/eparser.pm
index 25b09febb8..8075e42cb9 100644
--- a/source4/build/pidl/eparser.pm
+++ b/source4/build/pidl/eparser.pm
@@ -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($)