Skip to content

Commit

Permalink
fix: invalid operands compilation error
Browse files Browse the repository at this point in the history
  • Loading branch information
codebytere committed Jul 15, 2021
1 parent 39c32d1 commit 6fa6f8a
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion shell/common/application_info_win.cc
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,8 @@ bool IsRunningInDesktopBridgeImpl() {
initialize_get_package_family_name = false;
HMODULE kernel32_base = GetModuleHandle(L"Kernel32.dll");
if (!kernel32_base) {
NOTREACHED() << " " << __FUNCTION__ << "(): Can't open Kernel32.dll";
NOTREACHED() << std::string(" ") << __FUNCTION__
<< "(): Can't open Kernel32.dll";
return false;
}

Expand Down

0 comments on commit 6fa6f8a

Please sign in to comment.