mirror of
https://github.com/reactos/reactos.git
synced 2024-12-28 01:55:19 +00:00
added a cast to silence a compiler warning
svn path=/trunk/; revision=7468
This commit is contained in:
parent
282696e4ee
commit
e2bc674743
1 changed files with 1 additions and 1 deletions
|
@ -766,7 +766,7 @@ inline int ListView_FindItemPara(HWND list_ctrl, LPARAM param)
|
|||
fi.flags = LVFI_PARAM;
|
||||
fi.lParam = param;
|
||||
|
||||
return ListView_FindItem(list_ctrl, -1, &fi);
|
||||
return ListView_FindItem(list_ctrl, (unsigned)-1, &fi);
|
||||
}
|
||||
|
||||
inline int ListView_GetFocusedItem(HWND list_ctrl)
|
||||
|
|
Loading…
Reference in a new issue