mirror of
https://github.com/ApfelTeeSaft/reactos.git
synced 2026-09-02 12:23:31 +00:00
Fix MessageBox parameter value (handles ~= pointers --> NULL)
svn path=/trunk/; revision=66377
This commit is contained in:
@@ -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)
|
||||
|
||||
Reference in New Issue
Block a user