From e894cee4c7c692b6baf1748198b8894245dcd7de 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 ​ Origin commit data ------------------ Branch: master Commit: https://github.com/neutrino-images/ni-libstb-hal/commit/76f1f530987fe66e49e36d4666e141a7729f8291 Author: Markus Volk Date: 2020-02-03 (Mon, 03 Feb 2020) ------------------ This commit was generated by Migit --- 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);