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