advpack: backup should be a const string.

This commit is contained in:
James Hawkins 2006-09-20 19:51:53 -07:00 committed by Alexandre Julliard
parent c56eec22e2
commit 319cac4c1f
1 changed files with 2 additions and 1 deletions

View File

@ -59,7 +59,8 @@ HRESULT WINAPI AddDelBackupEntryA(LPCSTR lpcszFileList, LPCSTR lpcszBackupDir,
LPCSTR lpcszBaseName, DWORD dwFlags)
{
UNICODE_STRING backupdir, basename;
LPWSTR filelist, backup;
LPWSTR filelist;
LPCWSTR backup;
HRESULT res;
TRACE("(%s, %s, %s, %ld)\n", debugstr_a(lpcszFileList),