diff options
Diffstat (limited to 'node/Buffer.hpp')
-rw-r--r-- | node/Buffer.hpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/node/Buffer.hpp b/node/Buffer.hpp index 91bc1027..73d0e5de 100644 --- a/node/Buffer.hpp +++ b/node/Buffer.hpp @@ -284,7 +284,7 @@ public: inline void append(const std::string &s) throw(std::out_of_range) { - append(s.data(),s.length()); + append(s.data(),(unsigned int)s.length()); } /** |