From 2ce28f11ce63373fd188778f5406d61390d0c8ea Mon Sep 17 00:00:00 2001 From: "Earle F. Philhower, III" Date: Thu, 24 Jan 2019 14:18:33 -0800 Subject: [PATCH] Fix pgm_read_float() macro definitions Add in missing derefeence in pgm_read_float macro which was causing compile errors. --- tools/sdk/libc/xtensa-lx106-elf/include/sys/pgmspace.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tools/sdk/libc/xtensa-lx106-elf/include/sys/pgmspace.h b/tools/sdk/libc/xtensa-lx106-elf/include/sys/pgmspace.h index ba46d84683..26709cbf89 100644 --- a/tools/sdk/libc/xtensa-lx106-elf/include/sys/pgmspace.h +++ b/tools/sdk/libc/xtensa-lx106-elf/include/sys/pgmspace.h @@ -72,11 +72,11 @@ static inline uint16_t pgm_read_word_inlined(const void* addr) { #define pgm_read_word(addr) pgm_read_word_inlined(addr) #ifdef __cplusplus #define pgm_read_dword(addr) (*reinterpret_cast(addr)) - #define pgm_read_float(addr) (*reinterpret_cast(addr)) + #define pgm_read_float(addr) (*reinterpret_cast(addr)) #define pgm_read_ptr(addr) (*reinterpret_cast(addr)) #else #define pgm_read_dword(addr) (*(const uint32_t*)(addr)) - #define pgm_read_float(addr) (*(const float)(addr)) + #define pgm_read_float(addr) (*(const float*)(addr)) #define pgm_read_ptr(addr) (*(const void*)(addr)) #endif