- Pass a boolean argument to RtlEqualUnicodeString
svn path=/trunk/; revision=63624
if (pldev->pGdiDriverInfo)
{
/* Check for match (case insensative) */
- if (RtlEqualUnicodeString(&pldev->pGdiDriverInfo->DriverName, &strDriverName, 1))
+ if (RtlEqualUnicodeString(&pldev->pGdiDriverInfo->DriverName, &strDriverName, TRUE))
{
/* Image found in LDEV list */
break;
/* Compare the name */
if (RtlEqualUnicodeString(RemainingName,
&DesktopName,
- (Attributes & OBJ_CASE_INSENSITIVE)))
+ (Attributes & OBJ_CASE_INSENSITIVE) != 0))
{
/* We found a match. Did this come from a create? */
if (Context)