From: José Bollo Date: Tue, 19 Sep 2017 12:39:47 +0000 (+0200) Subject: afb-context: add const qualifier for api_key X-Git-Tag: eel_4.99.2~58 X-Git-Url: https://gerrit.automotivelinux.org/gerrit/gitweb?a=commitdiff_plain;h=4776245dfb0ca70058881bc2059dc992581d041b;p=src%2Fapp-framework-binder.git afb-context: add const qualifier for api_key Change-Id: I138d70698342cc2350d4f9098bcf5c486d16faba Signed-off-by: José Bollo --- diff --git a/src/afb-context.c b/src/afb-context.c index 81f21ff4..11abcd48 100644 --- a/src/afb-context.c +++ b/src/afb-context.c @@ -163,9 +163,9 @@ int afb_context_check_loa(struct afb_context *context, unsigned loa) return afb_context_get_loa(context) >= loa; } -static inline void *loa_key(struct afb_context *context) +static inline const void *loa_key(struct afb_context *context) { - return (void*)(1+(intptr_t)(context->api_key)); + return (const void*)(1+(intptr_t)(context->api_key)); } static inline void *loa2ptr(unsigned loa) diff --git a/src/afb-context.h b/src/afb-context.h index f1af3622..47e488c4 100644 --- a/src/afb-context.h +++ b/src/afb-context.h @@ -22,7 +22,7 @@ struct afb_session; struct afb_context { struct afb_session *session; - void *api_key; + const void *api_key; struct afb_context *super; union { unsigned flags;