msacm32.drv: Constify some variables.

This commit is contained in:
Andrew Talbot 2007-05-27 17:52:34 +01:00 committed by Alexandre Julliard
parent af1a91d35e
commit 0bfd58014a

View file

@ -67,7 +67,7 @@ typedef struct tagWAVEMAPDATA {
DWORD nSamplesPerSecInner;
} WAVEMAPDATA;
static BOOL WAVEMAP_IsData(WAVEMAPDATA* wm)
static BOOL WAVEMAP_IsData(const WAVEMAPDATA* wm)
{
return (!IsBadReadPtr(wm, sizeof(WAVEMAPDATA)) && wm->self == wm);
}