mirror of
https://github.com/reactos/wine.git
synced 2024-11-25 04:39:45 +00:00
advpack: Cast-qual warnings fix.
This commit is contained in:
parent
98aeac78fc
commit
570aad50d2
@ -548,8 +548,8 @@ static HRESULT (WINAPI *pExtract)(EXTRACTdest*, LPCSTR);
|
|||||||
static LPSTR convert_file_list(LPCSTR FileList, DWORD *dwNumFiles)
|
static LPSTR convert_file_list(LPCSTR FileList, DWORD *dwNumFiles)
|
||||||
{
|
{
|
||||||
DWORD dwLen;
|
DWORD dwLen;
|
||||||
char *first = (char *)FileList;
|
const char *first = FileList;
|
||||||
char *last = (char *)FileList + strlen(FileList) - 1;
|
const char *last = FileList + strlen(FileList) - 1;
|
||||||
LPSTR szConvertedList, temp;
|
LPSTR szConvertedList, temp;
|
||||||
|
|
||||||
/* any number of these chars before the list is OK */
|
/* any number of these chars before the list is OK */
|
||||||
|
Loading…
Reference in New Issue
Block a user