shlwapi: Do not use wide character constants.

This commit is contained in:
Michael Stefaniuc 2007-06-20 23:34:50 +02:00 committed by Alexandre Julliard
parent 8304759634
commit 9acd67ec5b
1 changed files with 2 additions and 2 deletions

View File

@ -703,7 +703,7 @@ BOOL WINAPI SHRegGetBoolUSValueW(
/* process returned data via type into bool */ /* process returned data via type into bool */
switch (type) { switch (type) {
case REG_SZ: case REG_SZ:
data[9] = L'\0'; /* set end of string */ data[9] = '\0'; /* set end of string */
if (lstrcmpiW(data, wYES)==0 || lstrcmpiW(data, wTRUE)==0) if (lstrcmpiW(data, wYES)==0 || lstrcmpiW(data, wTRUE)==0)
ret = TRUE; ret = TRUE;
else if (lstrcmpiW(data, wNO)==0 || lstrcmpiW(data, wFALSE)==0) else if (lstrcmpiW(data, wNO)==0 || lstrcmpiW(data, wFALSE)==0)
@ -715,7 +715,7 @@ BOOL WINAPI SHRegGetBoolUSValueW(
break; break;
case REG_BINARY: case REG_BINARY:
if (datalen == 1) { if (datalen == 1) {
ret = (data[0] != L'\0'); ret = (data[0] != '\0');
break; break;
} }
default: default: