Skip to content
This repository has been archived by the owner on Jan 4, 2019. It is now read-only.

Commit

Permalink
Fix accidentally turning all upper case to lower in 3eb9e8a
Browse files Browse the repository at this point in the history
Auditors: @bbondy
  • Loading branch information
darkdh committed Jan 12, 2017
1 parent 3eb9e8a commit 99dff28
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions atom/app/atom_main.cc
Original file line number Diff line number Diff line change
Expand Up @@ -93,8 +93,8 @@ int APIENTRY wWinMain(HINSTANCE instance, HINSTANCE, wchar_t* cmd, int) {
}
}

if (isenvset("electron_internal_crash_service")) {
return crash_service::main(cmd);
if (IsEnvSet("ELECTRON_INTERNAL_CRASH_SERVICE")) {
return crash_service::Main(cmd);
}

sandbox::SandboxInterfaceInfo sandbox_info = {0};
Expand Down

1 comment on commit 99dff28

@bbondy
Copy link
Member

@bbondy bbondy commented on 99dff28 Jan 12, 2017

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

++

Please sign in to comment.