diff options
author | Chris Robinson <[email protected]> | 2017-08-23 23:01:11 -0700 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2017-08-23 23:01:11 -0700 |
commit | 9ea32713b57fd95832172de5e8d8534339bb646b (patch) | |
tree | 13718ad9174b67f56cc6a904e2221a7955f8f10d /Alc/mixer_c.c | |
parent | 3d76e1c5141b10e405c13cd3362cad35a422926b (diff) |
Constify some pointers
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 1635476a..e468fedb 100644 --- a/Alc/mixer_c.c +++ b/Alc/mixer_c.c @@ -73,7 +73,7 @@ const ALfloat *Resample_bsinc_C(const InterpState *state, const ALfloat *restric ALsizei dstlen) { const ALfloat *fil, *scd, *phd, *spd; - const ALfloat *filter = state->bsinc.filter; + const ALfloat *const filter = state->bsinc.filter; const ALfloat sf = state->bsinc.sf; const ALsizei m = state->bsinc.m; ALsizei j_f, pi, i; |