summaryrefslogtreecommitdiff
path: root/source4/pidl/idl.yp
diff options
context:
space:
mode:
authorJelmer Vernooij <jelmer@samba.org>2007-01-09 06:02:41 +0000
committerGerald (Jerry) Carter <jerry@samba.org>2007-10-10 14:37:17 -0500
commitcfa230c480b0c55a23e23dcb39e1b170da576c95 (patch)
treeff96974327bc4d771c6a07e11b1ff9f42ff6dbe3 /source4/pidl/idl.yp
parente0e96ae80d21c6b94e05fbf3af457001a005ce09 (diff)
downloadsamba-cfa230c480b0c55a23e23dcb39e1b170da576c95.tar.gz
samba-cfa230c480b0c55a23e23dcb39e1b170da576c95.tar.bz2
samba-cfa230c480b0c55a23e23dcb39e1b170da576c95.zip
r20625: Fix couple of warnings.
(This used to be commit 203076129b967ccc6258e807280dc1b75583a064)
Diffstat (limited to 'source4/pidl/idl.yp')
-rw-r--r--source4/pidl/idl.yp2
1 files changed, 1 insertions, 1 deletions
diff --git a/source4/pidl/idl.yp b/source4/pidl/idl.yp
index 3030348c5c..5ef4dca379 100644
--- a/source4/pidl/idl.yp
+++ b/source4/pidl/idl.yp
@@ -179,7 +179,7 @@ typedecl: usertype ';' { $_[1] };
sign: 'signed' | 'unsigned';
existingtype:
- | sign identifier { "$_[1] $_[2]" }
+ sign identifier { ($_[1]?$_[1]:"signed") ." $_[2]" }
| identifier
;