diff --git a/reactos/base/applications/mplay32/mplay32.c b/reactos/base/applications/mplay32/mplay32.c index 0ad51d91a8e..0e6e4084566 100644 --- a/reactos/base/applications/mplay32/mplay32.c +++ b/reactos/base/applications/mplay32/mplay32.c @@ -756,7 +756,7 @@ _tWinMain(HINSTANCE hInst, HINSTANCE hPrevInst, LPTSTR lpCmdLine, INT nCmdShow) if (!RegisterClassEx(&WndClass)) { - ShowLastWin32Error(0); + ShowLastWin32Error(NULL); return 0; } @@ -773,7 +773,7 @@ _tWinMain(HINSTANCE hInst, HINSTANCE hPrevInst, LPTSTR lpCmdLine, INT nCmdShow) NULL); if (!hwnd) { - ShowLastWin32Error(0); + ShowLastWin32Error(NULL); return 0; }