From d58468615e52bdd8c69f63df0a9ddccb5136a3fe Mon Sep 17 00:00:00 2001 From: Ingo Schwarze Date: Fri, 17 Feb 2017 14:43:54 +0000 Subject: Improve clarity of some casts; from Christos Zoulas . --- dbm_map.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'dbm_map.c') diff --git a/dbm_map.c b/dbm_map.c index d158302b..87c085d2 100644 --- a/dbm_map.c +++ b/dbm_map.c @@ -1,4 +1,4 @@ -/* $Id: dbm_map.c,v 1.7 2016/10/22 10:09:27 schwarze Exp $ */ +/* $Id: dbm_map.c,v 1.8 2017/02/17 14:43:54 schwarze Exp $ */ /* * Copyright (c) 2016 Ingo Schwarze * @@ -175,7 +175,7 @@ dbm_getint(int32_t offset) int32_t dbm_addr(const void *p) { - return htobe32((char *)p - dbm_base); + return htobe32((const char *)p - dbm_base); } int -- cgit v1.2.3