summaryrefslogtreecommitdiff
path: root/node/Dictionary.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'node/Dictionary.hpp')
-rw-r--r--node/Dictionary.hpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/node/Dictionary.hpp b/node/Dictionary.hpp
index 061dcac1..a1b0f9cb 100644
--- a/node/Dictionary.hpp
+++ b/node/Dictionary.hpp
@@ -81,7 +81,7 @@ public:
if (s) {
if (len > (C-1))
len = C-1;
- memcpy(_d,s,len);
+ ZT_FAST_MEMCPY(_d,s,len);
_d[len] = (char)0;
} else {
_d[0] = (char)0;