Commit 0bfd5801 authored by Andrew Talbot's avatar Andrew Talbot Committed by Alexandre Julliard

msacm32.drv: Constify some variables.

parent af1a91d3
......@@ -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);
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment