Gabriel Handford 8 years ago
parent
commit
3eb5f8d521
1 changed files with 1 additions and 1 deletions
  1. 1 1
      atom/common/platform_util_win.cc

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