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; }