From 21320ddfcb1736e3fef6ca414fbc1cc0e127d0c5 Mon Sep 17 00:00:00 2001 From: Juha Heinanen Date: Wed, 2 Feb 2022 11:41:51 +0200 Subject: [PATCH] Avoid some lint warnings --- app/src/main/cpp/baresip.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/src/main/cpp/baresip.c b/app/src/main/cpp/baresip.c index 6d7c1ac6..676732b9 100644 --- a/app/src/main/cpp/baresip.c +++ b/app/src/main/cpp/baresip.c @@ -362,8 +362,8 @@ static struct mqueue *mq; static void mqueue_handler(int id, void *data, void *arg) { if (id == ID_UA_STOP_ALL) { - LOGD("calling ua_stop_all with force %u\n", (unsigned)data); - ua_stop_all((bool)data); + LOGD("calling ua_stop_all with force %u\n", (unsigned)(uintptr_t)data); + ua_stop_all((bool)(uintptr_t)data); } }