summaryrefslogtreecommitdiffstats
path: root/src/uscxml/messages/InvokeRequest.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/uscxml/messages/InvokeRequest.cpp')
-rw-r--r--src/uscxml/messages/InvokeRequest.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/uscxml/messages/InvokeRequest.cpp b/src/uscxml/messages/InvokeRequest.cpp
index 26d40ce..e56a6ff 100644
--- a/src/uscxml/messages/InvokeRequest.cpp
+++ b/src/uscxml/messages/InvokeRequest.cpp
@@ -48,7 +48,7 @@ InvokeRequest InvokeRequest::fromXML(const std::string& xmlString) {
std::ostream& operator<< (std::ostream& os, const InvokeRequest& invokeReq) {
std::string indent;
- for (int i = 0; i < _dataIndentation; i++) {
+ for (size_t i = 0; i < _dataIndentation; i++) {
indent += " ";
}