Skip to content

Commit

Permalink
resample: fix UINT32_MAX fallback
Browse files Browse the repository at this point in the history
Reported by Mark Harris
  • Loading branch information
tmatth committed Sep 14, 2018
1 parent 45aace2 commit 6b539e0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion libspeexdsp/resample.c
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 6b539e0

Please sign in to comment.