summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRyan <fauxpark@gmail.com>2020-04-03 02:52:16 +1100
committerGitHub <noreply@github.com>2020-04-02 16:52:16 +0100
commit2b427f774a6665819306cf716d79355db3f7d169 (patch)
treeb4237c3d67fe0421e4a57785b85c4d2e15c85e85
parent85444176b2c18fa17396fca7a184b8e28d140a03 (diff)
Fix `pgm_read_ptr()` define for ARM (#8658)0.8.93
-rw-r--r--tmk_core/common/progmem.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/tmk_core/common/progmem.h b/tmk_core/common/progmem.h
index be8485117c..39a918fe98 100644
--- a/tmk_core/common/progmem.h
+++ b/tmk_core/common/progmem.h
@@ -8,7 +8,7 @@
# define pgm_read_byte(address_short) *((uint8_t*)(address_short))
# define pgm_read_word(address_short) *((uint16_t*)(address_short))
# define pgm_read_dword(address_short) *((uint32_t*)(address_short))
-# define pgm_read_ptr(address_short) *((void*)(address_short))
+# define pgm_read_ptr(address_short) *((void**)(address_short))
# define strcmp_P(s1, s2) strcmp(s1, s2)
# define strcpy_P(dest, src) strcpy(dest, src)
# define strlen_P(src) strlen(src)