From bd0414043594f9318ee90fb301691d59ce71f95c Mon Sep 17 00:00:00 2001 From: Jouni Malinen Date: Wed, 24 Jul 2019 19:33:06 +0300 Subject: [PATCH] trace: Avoid void pointer arithmetic This is a compiler specific extension and not compliant with the C standard. Signed-off-by: Jouni Malinen --- src/utils/trace.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/utils/trace.c b/src/utils/trace.c index e0b5b0bb9..408434320 100644 --- a/src/utils/trace.c +++ b/src/utils/trace.c @@ -186,7 +186,7 @@ static void wpa_trace_bfd_addr(void *pc) if (abfd == NULL) return; - data.pc = (bfd_hostptr_t) (pc - start_offset); + data.pc = (bfd_hostptr_t) ((u8 *) pc - start_offset); data.found = FALSE; bfd_map_over_sections(abfd, find_addr_sect, &data); @@ -227,7 +227,7 @@ static const char * wpa_trace_bfd_addr2func(void *pc) if (abfd == NULL) return NULL; - data.pc = (bfd_hostptr_t) (pc - start_offset); + data.pc = (bfd_hostptr_t) ((u8 *) pc - start_offset); data.found = FALSE; bfd_map_over_sections(abfd, find_addr_sect, &data); @@ -299,7 +299,7 @@ size_t wpa_trace_calling_func(const char *buf[], size_t len) for (i = 0; i < btrace_num; i++) { struct bfd_data data; - data.pc = (bfd_hostptr_t) (btrace_res[i] - start_offset); + data.pc = (bfd_hostptr_t) ((u8 *) btrace_res[i] - start_offset); data.found = FALSE; bfd_map_over_sections(abfd, find_addr_sect, &data);