diff options
author | Toni Uhlig <matzeton@googlemail.com> | 2019-09-22 21:56:13 +0200 |
---|---|---|
committer | Toni Uhlig <matzeton@googlemail.com> | 2019-09-22 21:56:13 +0200 |
commit | 675c2e3d0292a32b3567002fb269e23c6f07a93b (patch) | |
tree | 92051287f561c0bf6ecdead44aed03528bd2ed48 /TestDLL | |
parent | b1fda3776aa7353aed4ce188d93be87849e775f2 (diff) |
removed invalid condition
Diffstat (limited to 'TestDLL')
-rw-r--r-- | TestDLL/dllmain.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/TestDLL/dllmain.cpp b/TestDLL/dllmain.cpp index a4dbaed..39075b7 100644 --- a/TestDLL/dllmain.cpp +++ b/TestDLL/dllmain.cpp @@ -10,7 +10,7 @@ void APIENTRY LibEntry(void) MessageBoxA(NULL, "DllMain from TestDLL", "TestDLL Notification", - MB_OK | MB_ICONINFORMATION) == IDOK ? TRUE : FALSE; + MB_OK | MB_ICONINFORMATION); } } |