aboutsummaryrefslogtreecommitdiffstats
path: root/utils/makehrtf.c
diff options
context:
space:
mode:
authorChris Robinson <[email protected]>2018-10-29 11:32:50 -0700
committerChris Robinson <[email protected]>2018-10-29 11:32:50 -0700
commit903d878460056737b66c188544d6dc18c7b6dc07 (patch)
tree5ecd6c9926db3bad9977a481d618fb30dcc31f94 /utils/makehrtf.c
parent184241f2ef4935d3bf3e6df78991898bf339b92a (diff)
Replace restrict with RESTRICT
Diffstat (limited to 'utils/makehrtf.c')
-rw-r--r--utils/makehrtf.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/utils/makehrtf.c b/utils/makehrtf.c
index 0bd36849..eb174c8a 100644
--- a/utils/makehrtf.c
+++ b/utils/makehrtf.c
@@ -945,7 +945,7 @@ static inline uint dither_rng(uint *seed)
// Performs a triangular probability density function dither. The input samples
// should be normalized (-1 to +1).
-static void TpdfDither(double *restrict out, const double *restrict in, const double scale,
+static void TpdfDither(double *RESTRICT out, const double *RESTRICT in, const double scale,
const int count, const int step, uint *seed)
{
static const double PRNG_SCALE = 1.0 / UINT_MAX;