From a956791f6995f9cfbeb21ffcf129125665bed298 Mon Sep 17 00:00:00 2001 From: Ben Noordhuis Date: Tue, 17 Feb 2015 22:53:21 +0100 Subject: [PATCH] src: fix typo in error message PR-URL: https://github.com/iojs/io.js/pull/875 Reviewed-By: Colin Ihrig Reviewed-By: Vladimir Kurchatkin --- src/node.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/node.cc b/src/node.cc index bffcd04cfd8b5e..48c93b8b6a8a61 100644 --- a/src/node.cc +++ b/src/node.cc @@ -1030,7 +1030,7 @@ Handle MakeCallback(Environment* env, try_catch.SetVerbose(false); env->async_hooks_pre_function()->Call(object, 0, nullptr); if (try_catch.HasCaught()) - FatalError("node:;MakeCallback", "pre hook threw"); + FatalError("node::MakeCallback", "pre hook threw"); try_catch.SetVerbose(true); }