Commit 7a28ce24 authored by Frédéric Delanoy's avatar Frédéric Delanoy Committed by Alexandre Julliard

dplayx: Avoid TRUE:FALSE conditional expressions.

parent f2429cfe
......@@ -4634,7 +4634,7 @@ static HMODULE DP_LoadSP( LPCGUID lpcGuid, LPSPINITDATA lpSpData, LPBOOL lpbIsDp
FILETIME filetime;
(i == 0) ? (searchSubKey = spSubKey ) : (searchSubKey = lpSubKey );
*lpbIsDpSp = (i == 0) ? TRUE : FALSE;
*lpbIsDpSp = (i == 0);
/* Need to loop over the service providers in the registry */
......
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