diff options
author | Benoit Foucher <benoit@zeroc.com> | 2017-05-03 14:43:33 +0200 |
---|---|---|
committer | Benoit Foucher <benoit@zeroc.com> | 2017-05-03 14:43:33 +0200 |
commit | 5e1ba6d3cb6ace175e46084a392c4e4fb4703030 (patch) | |
tree | 55dcaa8d7a005ac3b79715f888c383dd4ee84676 /objective-c | |
parent | Fix (ICE-7839) - C++ AMI thread behavior in C#, Java and Python (diff) | |
download | ice-5e1ba6d3cb6ace175e46084a392c4e4fb4703030.tar.bz2 ice-5e1ba6d3cb6ace175e46084a392c4e4fb4703030.tar.xz ice-5e1ba6d3cb6ace175e46084a392c4e4fb4703030.zip |
Fixed Objective-C build error
Diffstat (limited to 'objective-c')
-rw-r--r-- | objective-c/test/Ice/ami/TestI.m | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/objective-c/test/Ice/ami/TestI.m b/objective-c/test/Ice/ami/TestI.m index 94ef9cbeb44..ab67a1fefc9 100644 --- a/objective-c/test/Ice/ami/TestI.m +++ b/objective-c/test/Ice/ami/TestI.m @@ -140,7 +140,7 @@ -(void) pingBiDir:(ICEIdentity*)id_ current:(ICECurrent *)current { - [TestAMIPingReplyPrx uncheckedCast:[current.con createProxy:id_] reply]; + [[TestAMIPingReplyPrx uncheckedCast:[current.con createProxy:id_]] reply]; } @end |