advpack: Cast-qual warnings fix.

This commit is contained in:
Andrew Talbot 2006-09-07 22:25:14 +01:00 committed by Alexandre Julliard
parent 98aeac78fc
commit 570aad50d2

View File

@ -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 */