diff options
author | Stefan Radomski <github@mintwerk.de> | 2016-05-09 20:44:01 (GMT) |
---|---|---|
committer | Stefan Radomski <github@mintwerk.de> | 2016-05-09 20:44:01 (GMT) |
commit | 1b11b310be61e51b3ac5ebb83f7c8a33aef3d6e8 (patch) | |
tree | 94dd97bce2b62c890514fef506ff1b49a0228709 /src | |
parent | 43ac168a8ea4a75f1df7b2b6d7444b618eedd42c (diff) | |
download | uscxml-legacy-1.0.zip uscxml-legacy-1.0.tar.gz uscxml-legacy-1.0.tar.bz2 |
Fixed a typo and added a test for issue 56legacy-1.0
Diffstat (limited to 'src')
-rw-r--r-- | src/uscxml/Interpreter.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/uscxml/Interpreter.h b/src/uscxml/Interpreter.h index a22b7b8..81d12d0 100644 --- a/src/uscxml/Interpreter.h +++ b/src/uscxml/Interpreter.h @@ -70,7 +70,7 @@ catch (Event e) { \ } catch (boost::bad_weak_ptr e) { \ LOG(ERROR) << "Unclean shutdown " << std::endl << std::endl; \ } catch (...) { \ - LOG(ERROR) << "An exception occured when calling " #callback " on monitors"; \ + LOG(ERROR) << "An exception occurred when calling " #callback " on monitors"; \ } \ if (_state == USCXML_DESTROYED) { \ throw boost::bad_weak_ptr(); \ |