Browse Source

stream_wrap.cc: fix typo

v0.9.1-release
Bert Belder 13 years ago
parent
commit
4624cf1214
  1. 2
      src/stream_wrap.cc

2
src/stream_wrap.cc

@ -337,7 +337,7 @@ Handle<Value> StreamWrap::WriteStringImpl(const Arguments& args) {
break;
case kUcs2:
storage_size += string->Length() * sizeof(uint16_t);
storage_size = string->Length() * sizeof(uint16_t);
break;
default:

Loading…
Cancel
Save