From aac717da8d93e35fc3f8d92c789f8494387ed8a7 Mon Sep 17 00:00:00 2001 From: Ben Noordhuis Date: Tue, 20 Dec 2011 00:30:41 +0100 Subject: [PATCH] Add missing return statement in _debugPause() binding. --- src/node.cc | 1 + 1 file changed, 1 insertion(+) diff --git a/src/node.cc b/src/node.cc index a1a430213f..2a7e5d3c8a 100644 --- a/src/node.cc +++ b/src/node.cc @@ -2515,6 +2515,7 @@ static Handle DebugProcess(const Arguments& args) { static Handle DebugPause(const Arguments& args) { v8::Debug::DebugBreak(node_isolate); + return Undefined(); }