From 27cb4d4672268d3c1b57494e892dbac3d38d5b54 Mon Sep 17 00:00:00 2001 From: Tim Potter Date: Wed, 26 Jan 2005 06:29:10 +0000 Subject: r5008: 32-bits is the default bitmap size. (This used to be commit 493ba2da6bb93d080ff92c50d920df8c858f3010) --- source4/build/pidl/eparser.pm | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'source4/build/pidl') 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($) -- cgit