aboutsummaryrefslogtreecommitdiffstats
path: root/Alc
diff options
context:
space:
mode:
Diffstat (limited to 'Alc')
-rw-r--r--Alc/mastering.cpp (renamed from Alc/mastering.c)2
1 files changed, 1 insertions, 1 deletions
diff --git a/Alc/mastering.c b/Alc/mastering.cpp
index 5ccf3a9e..001aada1 100644
--- a/Alc/mastering.c
+++ b/Alc/mastering.cpp
@@ -447,7 +447,7 @@ Compressor* CompressorInit(const ALsizei NumChans, const ALuint SampleRate,
size += sizeof(*Comp->Hold);
}
- Comp = al_calloc(16, size);
+ Comp = static_cast<Compressor*>(al_calloc(16, size));
Comp->NumChans = NumChans;
Comp->SampleRate = SampleRate;
Comp->Auto.Knee = AutoKnee;