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

github.com/mumble-voip/celt-0.7.0.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRobert Adam <dev@robert-adam.de>2022-02-06 22:25:26 +0300
committerGitHub <noreply@github.com>2022-02-06 22:25:26 +0300
commit01c3967bd4029583d2c13acc6690b56826164940 (patch)
treef3f28f9b3273091c6c6467473807096adfacd48e
parent5a16cda6d78cda0cd14eb13c56c65d82724842e5 (diff)
MacOS X typedef fix HEADmaster
Ref: https://gitlab.xiph.org/xiph/celt/-/commit/80cae17845605237cc2d408d17a07733b7e3635c
-rw-r--r--libcelt/celt_types.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/libcelt/celt_types.h b/libcelt/celt_types.h
index fecd457..7023824 100644
--- a/libcelt/celt_types.h
+++ b/libcelt/celt_types.h
@@ -67,8 +67,8 @@
#elif (defined(__APPLE__) && defined(__MACH__)) /* MacOS X Framework build */
# include <sys/types.h>
- typedef int16 celt_int16;
- typedef u_int16 celt_uint16;
+ typedef int16_t celt_int16;
+ typedef u_int16_t celt_uint16;
typedef int32_t celt_int32;
typedef u_int32_t celt_uint32;