From 3eb5f8d52147e7a589dabbbf151743995dca7b09 Mon Sep 17 00:00:00 2001 From: Gabriel Handford Date: Thu, 13 Oct 2016 19:10:12 -0700 Subject: [PATCH] Fix typo --- atom/common/platform_util_win.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/atom/common/platform_util_win.cc b/atom/common/platform_util_win.cc index 5483c783f1..7eb3c470f7 100644 --- a/atom/common/platform_util_win.cc +++ b/atom/common/platform_util_win.cc @@ -322,7 +322,7 @@ bool OpenExternal(const base::string16& url, bool activate) { bool OpenExternal(const base::string16& url, bool activate, const OpenExternalCallback& callback) { // TODO: Implement async open if callback is specified - bool opened = openExternal(url, activate) + bool opened = openExternal(url, activate); callback(opened); return opened; }