From 75635c570f54dc7ed046b31fab7692065e0c8d1a Mon Sep 17 00:00:00 2001 From: Aymen Naghmouchi Date: Tue, 26 Feb 2019 11:53:30 +0100 Subject: [PATCH] src: remove namespace Signed-off-by: Aymen Naghmouchi --- src/tty_wrap.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/tty_wrap.cc b/src/tty_wrap.cc index dc9dc3514238bc..7b8a7ed227446d 100644 --- a/src/tty_wrap.cc +++ b/src/tty_wrap.cc @@ -114,7 +114,7 @@ void TTYWrap::GetWindowSize(const FunctionCallbackInfo& args) { int err = uv_tty_get_winsize(&wrap->handle_, &width, &height); if (err == 0) { - Local a = args[0].As(); + Local a = args[0].As(); a->Set(env->context(), 0, Integer::New(env->isolate(), width)).FromJust(); a->Set(env->context(), 1, Integer::New(env->isolate(), height)).FromJust(); }