From b3c0359b567c92f130a5eb70db47c25c1d840fed Mon Sep 17 00:00:00 2001 From: Ryan Dahl Date: Mon, 26 Jul 2010 19:08:21 -0700 Subject: [PATCH] Only one line break before stacktrace --- src/node.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/node.cc b/src/node.cc index b433940263..ada473d074 100644 --- a/src/node.cc +++ b/src/node.cc @@ -902,7 +902,7 @@ static void ReportException(TryCatch &try_catch, bool show_line) { Handle message = try_catch.Message(); node::Stdio::DisableRawMode(STDIN_FILENO); - fprintf(stderr, "\n\n"); + fprintf(stderr, "\n"); if (show_line && !message.IsEmpty()) { // Print (filename):(line number): (message).