summaryrefslogtreecommitdiff
path: root/src/tty_wrap.cc
diff options
context:
space:
mode:
Diffstat (limited to 'src/tty_wrap.cc')
-rw-r--r--src/tty_wrap.cc6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/tty_wrap.cc b/src/tty_wrap.cc
index cd6e319fc0..a3957bea23 100644
--- a/src/tty_wrap.cc
+++ b/src/tty_wrap.cc
@@ -53,7 +53,7 @@ void TTYWrap::Initialize(Handle<Object> target,
Handle<Context> context) {
Environment* env = Environment::GetCurrent(context);
- Local<FunctionTemplate> t = FunctionTemplate::New(New);
+ Local<FunctionTemplate> t = FunctionTemplate::New(env->isolate(), New);
t->SetClassName(FIXED_ONE_BYTE_STRING(env->isolate(), "TTY"));
t->InstanceTemplate()->SetInternalFieldCount(1);
@@ -141,8 +141,8 @@ void TTYWrap::GetWindowSize(const FunctionCallbackInfo<Value>& args) {
if (err == 0) {
Local<v8::Array> a = args[0].As<Array>();
- a->Set(0, Integer::New(width, env->isolate()));
- a->Set(1, Integer::New(height, env->isolate()));
+ a->Set(0, Integer::New(env->isolate(), width));
+ a->Set(1, Integer::New(env->isolate(), height));
}
args.GetReturnValue().Set(err);