mirror of
https://github.com/reactos/wine.git
synced 2024-11-29 06:30:37 +00:00
Avoid compiler warning in AddEntryToList().
This commit is contained in:
parent
9393580ab5
commit
db7fc1cd58
@ -159,7 +159,7 @@ static void AddEntryToList(HWND hwndLV, LPTSTR Name, DWORD dwValType,
|
||||
index = ListView_InsertItem(hwndLV, &item);
|
||||
if (index != -1) {
|
||||
/* LPTSTR pszText = NULL; */
|
||||
LPCTSTR pszText = _T("(cannot display value)");
|
||||
LPTSTR pszText = _T("(cannot display value)");
|
||||
switch (dwValType) {
|
||||
case REG_SZ:
|
||||
case REG_EXPAND_SZ:
|
||||
|
Loading…
Reference in New Issue
Block a user