summaryrefslogtreecommitdiff
path: root/objective-c
diff options
context:
space:
mode:
authorBenoit Foucher <benoit@zeroc.com>2017-05-03 14:43:33 +0200
committerBenoit Foucher <benoit@zeroc.com>2017-05-03 14:43:33 +0200
commit5e1ba6d3cb6ace175e46084a392c4e4fb4703030 (patch)
tree55dcaa8d7a005ac3b79715f888c383dd4ee84676 /objective-c
parentFix (ICE-7839) - C++ AMI thread behavior in C#, Java and Python (diff)
downloadice-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.m2
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