diff options
author | Jelmer Vernooij <jelmer@samba.org> | 2007-02-21 11:32:48 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 14:48:42 -0500 |
commit | a074602362acd881e3e7ac3b987df93fee3cb9f8 (patch) | |
tree | 997da2e212fea4b741c6c68c92cd6ce31e0bf571 /source4/librpc/idl | |
parent | 613d1c1fb9d86120c062ab640b69842bd246187c (diff) | |
download | samba-a074602362acd881e3e7ac3b987df93fee3cb9f8.tar.gz samba-a074602362acd881e3e7ac3b987df93fee3cb9f8.tar.bz2 samba-a074602362acd881e3e7ac3b987df93fee3cb9f8.zip |
r21487: Fix warning when using anonymous types, initial work on nested type support in ejs.
(This used to be commit a396c5de12cd958fe0457fa5372e539132ad7ed9)
Diffstat (limited to 'source4/librpc/idl')
-rw-r--r-- | source4/librpc/idl/echo.idl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source4/librpc/idl/echo.idl b/source4/librpc/idl/echo.idl index fa030be761..5b5d2ed326 100644 --- a/source4/librpc/idl/echo.idl +++ b/source4/librpc/idl/echo.idl @@ -99,7 +99,7 @@ interface rpcecho } echo_Enum1_32; typedef struct { - echo_Enum1 e1; + enum { foo=1, bar=2} e1; echo_Enum1_32 e2; } echo_Enum2; |