diff options
author | Chris Robinson <[email protected]> | 2016-07-26 00:07:39 -0700 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2016-07-26 00:07:39 -0700 |
commit | 45514ee32f8566d35d6153a64c575dfde256d941 (patch) | |
tree | 121bc0a4a74b6bb8e80b40fc4b674f55283ad362 /Alc/mixer_c.c | |
parent | 11b38e11907ea383544bcf902f9ea891f4a3a5a4 (diff) |
Add some more restrict keywords
Diffstat (limited to 'Alc/mixer_c.c')
-rw-r--r-- | Alc/mixer_c.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Alc/mixer_c.c b/Alc/mixer_c.c index 7dca7a61..5b3e7b74 100644 --- a/Alc/mixer_c.c +++ b/Alc/mixer_c.c @@ -93,7 +93,7 @@ const ALfloat *Resample_bsinc32_C(const BsincState *state, const ALfloat *src, A } -void ALfilterState_processC(ALfilterState *filter, ALfloat *restrict dst, const ALfloat *src, ALuint numsamples) +void ALfilterState_processC(ALfilterState *filter, ALfloat *restrict dst, const ALfloat *restrict src, ALuint numsamples) { ALuint i; if(numsamples > 1) |