Fix MessageBox parameter value (handles ~= pointers --> NULL)

svn path=/trunk/; revision=66377
This commit is contained in:
Hermès Bélusca-Maïto
2015-02-20 23:52:48 +00:00
parent 83343dbae2
commit b52759fd26
@@ -490,7 +490,7 @@ UserpMessageBox(
Text, Caption, Severity, Type);
/* Display a message box */
MessageBoxResponse = MessageBoxW(0, Text, Caption, Type);
MessageBoxResponse = MessageBoxW(NULL, Text, Caption, Type);
/* Return response value */
switch (MessageBoxResponse)