Skip to content

Commit 6b539e0

Browse files
committed
resample: fix UINT32_MAX fallback
Reported by Mark Harris
1 parent 45aace2 commit 6b539e0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

libspeexdsp/resample.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ static void speex_free(void *ptr) {free(ptr);}
9393
#endif
9494

9595
#ifndef UINT32_MAX
96-
#define UINT32_MAX 4294967296U
96+
#define UINT32_MAX 4294967295U
9797
#endif
9898

9999
#ifdef USE_SSE

0 commit comments

Comments
 (0)