Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mumble-voip/speexdsp.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTristan Matthews <tmatth@videolan.org>2018-09-15 02:15:33 +0300
committerTristan Matthews <tmatth@videolan.org>2018-09-15 02:42:13 +0300
commit6b539e057b56242c973693e0bcb5721493010f50 (patch)
tree1a9616fda9a80c7456b21f5f96071d4f31ed187c
parent45aace26fee5b304a7b22b4323e2110c8e14c3e8 (diff)
resample: fix UINT32_MAX fallback
Reported by Mark Harris
-rw-r--r--libspeexdsp/resample.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libspeexdsp/resample.c b/libspeexdsp/resample.c
index c0a189b..cd2477b 100644
--- a/libspeexdsp/resample.c
+++ b/libspeexdsp/resample.c
@@ -93,7 +93,7 @@ static void speex_free(void *ptr) {free(ptr);}
#endif
#ifndef UINT32_MAX
-#define UINT32_MAX 4294967296U
+#define UINT32_MAX 4294967295U
#endif
#ifdef USE_SSE