Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJuergen Haug2018-02-13 09:28:22 +0000
committerJuergen Haug2018-02-13 09:28:22 +0000
commit297a2818adb65e20a4a7860865881aa52a6e88b7 (patch)
treeaeb1343f6f5341908f392783055e568c8e58acda /plugins/org.eclipse.etrice.generator.c/src/org/eclipse/etrice/generator/c
parent01b3a858b9a65d1e73c79ee5ee95dae78c6bdf60 (diff)
downloadorg.eclipse.etrice-297a2818adb65e20a4a7860865881aa52a6e88b7.tar.gz
org.eclipse.etrice-297a2818adb65e20a4a7860865881aa52a6e88b7.tar.xz
org.eclipse.etrice-297a2818adb65e20a4a7860865881aa52a6e88b7.zip
[generator.c] added missing semicolon
Diffstat (limited to 'plugins/org.eclipse.etrice.generator.c/src/org/eclipse/etrice/generator/c')
-rw-r--r--plugins/org.eclipse.etrice.generator.c/src/org/eclipse/etrice/generator/c/gen/StateMachineGen.xtend2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/org.eclipse.etrice.generator.c/src/org/eclipse/etrice/generator/c/gen/StateMachineGen.xtend b/plugins/org.eclipse.etrice.generator.c/src/org/eclipse/etrice/generator/c/gen/StateMachineGen.xtend
index 07a079bc0..cf2fb278c 100644
--- a/plugins/org.eclipse.etrice.generator.c/src/org/eclipse/etrice/generator/c/gen/StateMachineGen.xtend
+++ b/plugins/org.eclipse.etrice.generator.c/src/org/eclipse/etrice/generator/c/gen/StateMachineGen.xtend
@@ -77,7 +77,7 @@ class StateMachineGen extends GenericStateMachineGenerator {
«langExt.accessLevelPrivate»void setState(«mc.componentName»* self, «stateType» new_state) {
self->state = new_state;
«IF Main::settings.generateMSCInstrumentation»
- ET_MSC_LOGGER_CHANGE_STATE(self->constData->instName, stateStrings[new_state])
+ ET_MSC_LOGGER_CHANGE_STATE(self->constData->instName, stateStrings[new_state]);
«ENDIF»
}

Back to the top