diff options
Diffstat (limited to 'source4/build/pidl/header.pm')
-rw-r--r-- | source4/build/pidl/header.pm | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/source4/build/pidl/header.pm b/source4/build/pidl/header.pm index 0822ca0e06..dda7e10425 100644 --- a/source4/build/pidl/header.pm +++ b/source4/build/pidl/header.pm @@ -127,6 +127,8 @@ sub HeaderType($$$) $res .= "const char"; } elsif ($data =~ "nstring") { $res .= "const char *"; + } elsif ($data =~ "lstring") { + $res .= "const char *"; } elsif (util::is_scalar_type($data)) { $res .= "$data"; } elsif (util::has_property($e, "switch_is")) { |