Skip to content

Commit

Permalink
Whitespace changes
Browse files Browse the repository at this point in the history
  • Loading branch information
OndrejPetrzilka committed Mar 22, 2020
1 parent 4a7b470 commit 3773aa1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions RBTray.cpp
Expand Up @@ -295,7 +295,7 @@ LRESULT CALLBACK HookWndProc(HWND hwnd, UINT msg, WPARAM wParam, LPARAM lParam)
if (_hLib) {
UnRegisterHook();
FreeLibrary(_hLib);
}
}
PostQuitMessage(0);
break;
default:
Expand All @@ -318,7 +318,7 @@ int WINAPI WinMain(_In_ HINSTANCE hInstance, _In_opt_ HINSTANCE /*hPrevInstance*
int argc;
LPWSTR * argv = CommandLineToArgvW(GetCommandLineW(), &argc);
bool shouldExit = false;
bool useHook = true;
bool useHook = true;
for (int a = 0; a < argc; ++a) {
if (!wcscmp(argv[a], L"--exit")) {
shouldExit = true;
Expand Down

0 comments on commit 3773aa1

Please sign in to comment.