summaryrefslogtreecommitdiff
path: root/node/Dictionary.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'node/Dictionary.hpp')
-rw-r--r--node/Dictionary.hpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/node/Dictionary.hpp b/node/Dictionary.hpp
index f706168f..178810ff 100644
--- a/node/Dictionary.hpp
+++ b/node/Dictionary.hpp
@@ -114,9 +114,9 @@ public:
std::string s;
for(const_iterator kv(begin());kv!=end();++kv) {
- _appendEsc(kv->first.data(),kv->first.length(),s);
+ _appendEsc(kv->first.data(),(unsigned int)kv->first.length(),s);
s.push_back('=');
- _appendEsc(kv->second.data(),kv->second.length(),s);
+ _appendEsc(kv->second.data(),(unsigned int)kv->second.length(),s);
s.append(ZT_EOL_S);
}