From 9a9372931abf129833100ee21a8be1216a8b67b2 Mon Sep 17 00:00:00 2001 From: Markus Volk Date: Mon, 3 Feb 2020 23:06:38 +0100 Subject: [PATCH] ca_ci.cpp: fix -fpermissive error on aarch64 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ​ --- common/ca_ci.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common/ca_ci.cpp b/common/ca_ci.cpp index 8247e7a..8d6df07 100644 --- a/common/ca_ci.cpp +++ b/common/ca_ci.cpp @@ -479,7 +479,7 @@ bool cCA::SendMessage(const CA_MESSAGE *msg) { hal_debug("%s\n", __func__); if(cam_messenger) - cam_messenger(EVT_CA_MESSAGE, (uint32_t) msg); + cam_messenger(EVT_CA_MESSAGE, (uintptr_t) msg); #if z_debug printf("*******Message\n"); printf("msg: %p\n", msg);