msvfw32: IDC_ARROW is already an int resource (PVS-Studio).

This commit is contained in:
Michael Stefaniuc 2014-10-28 23:31:51 +01:00 committed by Alexandre Julliard
parent 1860efaa9e
commit 6b4bec8af5
1 changed files with 1 additions and 1 deletions

View File

@ -86,7 +86,7 @@ BOOL VFWAPIV MCIWndRegisterClass(void)
wc.cbWndExtra = sizeof(MCIWndInfo*);
wc.hInstance = MSVFW32_hModule;
wc.hIcon = 0;
wc.hCursor = LoadCursorW(0, MAKEINTRESOURCEW(IDC_ARROW));
wc.hCursor = LoadCursorW(0, (LPWSTR)IDC_ARROW);
wc.hbrBackground = (HBRUSH)(COLOR_WINDOW + 1);
wc.lpszMenuName = NULL;
wc.lpszClassName = mciWndClassW;