diff options
author | Vlad Dumitrescu <[email protected]> | 2012-03-05 10:11:02 +0100 |
---|---|---|
committer | Vlad Dumitrescu <[email protected]> | 2014-05-19 10:08:04 +0200 |
commit | 85f9575c4edc696647af1cf574a2b685154f111c (patch) | |
tree | 27c0d6325c8166ef04695b485df9cb731e5af28e /lib/orber/src/orber_iiop.hrl | |
parent | e7e750a40ff875e6d62f1e7904470222ac8de269 (diff) | |
download | otp-85f9575c4edc696647af1cf574a2b685154f111c.tar.gz otp-85f9575c4edc696647af1cf574a2b685154f111c.tar.bz2 otp-85f9575c4edc696647af1cf574a2b685154f111c.zip |
Malformed macros in orber_iiop.hrl
A couple of macros were malformed, missing commas: PROFILEBODY_1_1_TYPEDEF
and PROFILEBODY_1_2_TYPEDEF
Diffstat (limited to 'lib/orber/src/orber_iiop.hrl')
-rw-r--r-- | lib/orber/src/orber_iiop.hrl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/orber/src/orber_iiop.hrl b/lib/orber/src/orber_iiop.hrl index 7a30af63e4..b2e970b30d 100644 --- a/lib/orber/src/orber_iiop.hrl +++ b/lib/orber/src/orber_iiop.hrl @@ -467,14 +467,14 @@ [{"iiop_version",?IIOP_VERSION }, {"host", {'tk_string', 0}}, {"port", 'tk_ushort'}, - {"object_key", {'tk_sequence', 'tk_octet', 0}} + {"object_key", {'tk_sequence', 'tk_octet', 0}}, {"components", ?IOP_TAGGEDCOMPONENT_SEQ}]}). -define(PROFILEBODY_1_2_TYPEDEF, {'tk_struct', ?SYSTEM_TYPE, 'IIOP_ProfileBody_1_1', [{"iiop_version",?IIOP_VERSION }, {"host", {'tk_string', 0}}, {"port", 'tk_ushort'}, - {"object_key", {'tk_sequence', 'tk_octet', 0}} + {"object_key", {'tk_sequence', 'tk_octet', 0}}, {"components", ?IOP_TAGGEDCOMPONENT_SEQ}]}). -define(SSLIOP_SSL, {'tk_struct', ?SYSTEM_TYPE, 'SSLIOP_SSL', |