From 9632740c5bcb5254b75fbc829729457bf7ce447e Mon Sep 17 00:00:00 2001 From: Juha Heinanen Date: Sat, 19 Mar 2022 09:03:37 +0200 Subject: [PATCH] Use long long instead of long if architecture is armeabi-v7a --- app/src/main/cpp/baresip.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/app/src/main/cpp/baresip.c b/app/src/main/cpp/baresip.c index 7195c077..a9c74c9d 100644 --- a/app/src/main/cpp/baresip.c +++ b/app/src/main/cpp/baresip.c @@ -7,6 +7,10 @@ #include #include "logger.h" +#if defined(__ARM_ARCH_7A__) + #define long long long +#endif + typedef struct baresip_context { JavaVM *javaVM;