dmloader: Do not use wide character constants.

This commit is contained in:
Michael Stefaniuc 2007-06-21 23:03:27 +02:00 committed by Alexandre Julliard
parent 585f863c24
commit 4a0ad1d0c5

View file

@ -86,7 +86,7 @@ void WINAPI IDirectMusicLoaderFileStream_Detach (LPSTREAM iface) {
if (This->hFile != INVALID_HANDLE_VALUE) {
CloseHandle(This->hFile);
}
This->wzFileName[0] = (L'\0');
This->wzFileName[0] = '\0';
}