summaryrefslogtreecommitdiffstats
path: root/src/uscxml/interpreter
diff options
context:
space:
mode:
authorStefan Radomski <github@mintwerk.de>2017-04-30 20:51:38 (GMT)
committerStefan Radomski <github@mintwerk.de>2017-04-30 20:51:38 (GMT)
commit6e1d8d25d4e7b65ca67b5d5c529ba0bedb81feb9 (patch)
treeef48948b05c1947d10ed40cb7844f0cb6d6eb86e /src/uscxml/interpreter
parent8015ce2701862e6977fe12cde839a35ddb4c32e5 (diff)
downloaduscxml-6e1d8d25d4e7b65ca67b5d5c529ba0bedb81feb9.zip
uscxml-6e1d8d25d4e7b65ca67b5d5c529ba0bedb81feb9.tar.gz
uscxml-6e1d8d25d4e7b65ca67b5d5c529ba0bedb81feb9.tar.bz2
Optimized ANSI-C transformation
Diffstat (limited to 'src/uscxml/interpreter')
-rw-r--r--src/uscxml/interpreter/BasicContentExecutor.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/uscxml/interpreter/BasicContentExecutor.cpp b/src/uscxml/interpreter/BasicContentExecutor.cpp
index 3d58973..7ffda91 100644
--- a/src/uscxml/interpreter/BasicContentExecutor.cpp
+++ b/src/uscxml/interpreter/BasicContentExecutor.cpp
@@ -283,7 +283,7 @@ void BasicContentExecutor::processLog(XERCESC_NS::DOMElement* content) {
_callbacks->getLogger().log(USCXML_LOG) << d << std::endl;
#else
// see issue113
- _callbacks->getLogger().log(USCXML_LOG) << (label.size() > 0 ? label + ":" : "") << d << std::endl;
+ _callbacks->getLogger().log(USCXML_LOG) << (label.size() > 0 ? label + ": " : "") << d << std::endl;
#endif
}