diff options
author | Andrew Tridgell <tridge@samba.org> | 2004-10-15 07:19:09 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 12:59:54 -0500 |
commit | f1eaf60fa3c742ab6ae9a34717adf604acbc25a0 (patch) | |
tree | 31753e664eaa969f44b239544777280bc01df5a9 /source4/build/pidl/util.pm | |
parent | dc2df2530fc729e5fa858fdab3c4355e27ece310 (diff) | |
download | samba-f1eaf60fa3c742ab6ae9a34717adf604acbc25a0.tar.gz samba-f1eaf60fa3c742ab6ae9a34717adf604acbc25a0.tar.bz2 samba-f1eaf60fa3c742ab6ae9a34717adf604acbc25a0.zip |
r2987: added support for signed 32 bit integers in pidl
(This used to be commit 24122eb93e39de8db3675618b6c227c95eb58d9c)
Diffstat (limited to 'source4/build/pidl/util.pm')
-rw-r--r-- | source4/build/pidl/util.pm | 1 |
1 files changed, 1 insertions, 0 deletions
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; |