M3UA_Emulation.ttcn: Fix parse error building with titan

Got this from titan:
"""
Notify: Parsing TTCN-3 module `M3UA_Emulation.ttcn'...
M3UA_Emulation.ttcn:603.6: error: at or before token `]': syntax error, unexpected ']'
M3UA_Emulation.ttcn:605.6: error: at or before token `]': syntax error, unexpected ']'
M3UA_Emulation.ttcn:607.6: error: at or before token `]': syntax error, unexpected ']'
"""

Change-Id: I129f8fbdac276b567a23e88d25b0df68b20747ea
Signed-off-by: Pau Espin Pedrol <pespin@sysmocom.de>
diff --git a/src/M3UA_Emulation.ttcn b/src/M3UA_Emulation.ttcn
index b66de7f..28a1dca 100644
--- a/src/M3UA_Emulation.ttcn
+++ b/src/M3UA_Emulation.ttcn
@@ -599,12 +599,12 @@
       f_Send_MTP3_TRANSFERreq(vl_ASP_MTP3_TRANSFERreq);
       repeat;
     }
-    [] as_SCTP_CommunicationUp()
-    [] as_SCTP_DataArrive()
-    [] as_SCTP_Connected()
-    [] as_Unexpected_SCTP_Events()
-    [] as_handleM3UA_timers()
-    [] as_handleSCTP_timers()
+    [] as_SCTP_CommunicationUp();
+    [] as_SCTP_DataArrive();
+    [] as_SCTP_Connected();
+    [] as_Unexpected_SCTP_Events();
+    [] as_handleM3UA_timers();
+    [] as_handleSCTP_timers();
   }
 }