Commit 973371c0 authored by Andrew Talbot's avatar Andrew Talbot Committed by Alexandre Julliard

regedit: Write-strings warning fix.

parent f6278456
......@@ -165,7 +165,8 @@ static void AddEntryToList(HWND hwndLV, LPTSTR Name, DWORD dwValType,
if (ValBuf) {
ListView_SetItemText(hwndLV, index, 2, ValBuf);
} else {
ListView_SetItemText(hwndLV, index, 2, "(not set)");
TCHAR textT[] = {'(','n','o','t',' ','s','e','t',')',0};
ListView_SetItemText(hwndLV, index, 2, textT);
}
break;
case REG_DWORD: {
......
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