mirror of
https://github.com/reactos/wine.git
synced 2024-11-25 12:49:45 +00:00
shlwapi: Do not use wide character constants.
This commit is contained in:
parent
8304759634
commit
9acd67ec5b
@ -703,7 +703,7 @@ BOOL WINAPI SHRegGetBoolUSValueW(
|
||||
/* process returned data via type into bool */
|
||||
switch (type) {
|
||||
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)
|
||||
ret = TRUE;
|
||||
else if (lstrcmpiW(data, wNO)==0 || lstrcmpiW(data, wFALSE)==0)
|
||||
@ -715,7 +715,7 @@ BOOL WINAPI SHRegGetBoolUSValueW(
|
||||
break;
|
||||
case REG_BINARY:
|
||||
if (datalen == 1) {
|
||||
ret = (data[0] != L'\0');
|
||||
ret = (data[0] != '\0');
|
||||
break;
|
||||
}
|
||||
default:
|
||||
|
Loading…
Reference in New Issue
Block a user