From f1eaf60fa3c742ab6ae9a34717adf604acbc25a0 Mon Sep 17 00:00:00 2001 From: Andrew Tridgell Date: Fri, 15 Oct 2004 07:19:09 +0000 Subject: r2987: added support for signed 32 bit integers in pidl (This used to be commit 24122eb93e39de8db3675618b6c227c95eb58d9c) --- source4/build/pidl/util.pm | 1 + 1 file changed, 1 insertion(+) (limited to 'source4/build') diff --git a/source4/build/pidl/util.pm b/source4/build/pidl/util.pm index e3f3b0d40d..5934f8a7e1 100644 --- a/source4/build/pidl/util.pm +++ b/source4/build/pidl/util.pm @@ -219,6 +219,7 @@ sub type_align($) return 8, if ($type eq "HYPER_T"); return 2, if ($type eq "wchar_t"); return 4, if ($type eq "DATA_BLOB"); + return 4, if ($type eq "int32"); # it must be an external type - all we can do is guess return 4; -- cgit