aboutsummaryrefslogtreecommitdiff
path: root/TestDLL
diff options
context:
space:
mode:
authorToni Uhlig <matzeton@googlemail.com>2019-09-22 21:56:13 +0200
committerToni Uhlig <matzeton@googlemail.com>2019-09-22 21:56:13 +0200
commit675c2e3d0292a32b3567002fb269e23c6f07a93b (patch)
tree92051287f561c0bf6ecdead44aed03528bd2ed48 /TestDLL
parentb1fda3776aa7353aed4ce188d93be87849e775f2 (diff)
removed invalid condition
Diffstat (limited to 'TestDLL')
-rw-r--r--TestDLL/dllmain.cpp2
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);
}
}