From 8c18cdb5b9f52bfdc870e2c5fd8f7df065b8737c Mon Sep 17 00:00:00 2001 From: BenceJanosSzabo <bence.janos.szabo@ericsson.com> Date: Wed, 1 Feb 2017 10:07:31 +0100 Subject: [PATCH] Address port and connect operation error message minor fix Change-Id: I9692f784161f632003aff42e4b3f528acef3aecf Signed-off-by: BenceJanosSzabo <bence.janos.szabo@ericsson.com> --- compiler2/ttcn3/Statement.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/compiler2/ttcn3/Statement.cc b/compiler2/ttcn3/Statement.cc index b27234568..966e797a8 100644 --- a/compiler2/ttcn3/Statement.cc +++ b/compiler2/ttcn3/Statement.cc @@ -4656,14 +4656,14 @@ error: { Error_Context cntxt2(config_op.compref1, "In first endpoint"); if (ptb1->get_testport_type() == PortTypeBody::TP_ADDRESS) { - error("An address supporting port cannot be used in the connect operation"); + error("An address supporting port cannot be used in a connect operation"); } } { Error_Context cntxt2(config_op.compref1, "In second endpoint"); if (ptb2->get_testport_type() == PortTypeBody::TP_ADDRESS) { - error("An address supporting port cannot be used in the connect operation"); + error("An address supporting port cannot be used in a connect operation"); } } } -- GitLab