Commit 971f47e5 authored by Francois Gouget's avatar Francois Gouget Committed by Alexandre Julliard

Remove unneeded casts.

parent 2b03aa6a
......@@ -89,8 +89,8 @@ static void configureAudioDriver(HWND hDlg, const char *drivername)
DRVCONFIGINFO dci;
LONG lRes;
dci.dwDCISize = sizeof (dci);
dci.lpszDCISectionName = (LPWSTR)0;
dci.lpszDCIAliasName = (LPWSTR)0;
dci.lpszDCISectionName = NULL;
dci.lpszDCIAliasName = NULL;
lRes = SendDriverMessage(hdrvr, DRV_CONFIGURE, 0, (LONG)&dci);
}
CloseDriver(hdrvr, 0, 0);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment