From de7d9609372b9fcd629a0f015c7d0b5796353e58 Mon Sep 17 00:00:00 2001
From: kristof <Kristof.Szabados@ericsson.com>
Date: Sat, 18 Mar 2017 18:09:16 +0100
Subject: [PATCH] corrected typo. (but actually the code is still bad ... we do
 not warn the user of the code being illegal ... we warn the user that we
 might not be able to build it correctly)

Signed-off-by: kristof <Kristof.Szabados@ericsson.com>
---
 compiler2/ttcn3/AST_ttcn3.cc | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/compiler2/ttcn3/AST_ttcn3.cc b/compiler2/ttcn3/AST_ttcn3.cc
index d46db573f..70bb4e641 100644
--- a/compiler2/ttcn3/AST_ttcn3.cc
+++ b/compiler2/ttcn3/AST_ttcn3.cc
@@ -1370,7 +1370,7 @@ namespace Ttcn {
             refch.mark_state();
             if (PRIVATE != im->get_visibility()) {
               if (refch.exists(m->get_fullname())) {
-                if(m->get_moduletype()!=Common::Module::MOD_ASN){  // Do not warning for circular import in ASN.1 module. It is legal
+                if(m->get_moduletype()!=Common::Module::MOD_ASN){  // Do not warn for circular import in ASN.1 module. It is legal
                   m->warning("Circular import chain is not recommended: %s",
                     refch.get_dispstr(m->get_fullname()).c_str());
                 }
-- 
GitLab