Skip to content
Snippets Groups Projects
Commit 04263de4 authored by Dean Camera's avatar Dean Camera
Browse files

Fix definition of pgm_read_ptr().

parent e0852408
No related branches found
No related tags found
No related merge requests found
......@@ -213,7 +213,7 @@
*
* \return Pointer retrieved from PROGMEM space.
*/
#define pgm_read_ptr(Addr) (void*)pgm_read_word(Address)
#define pgm_read_ptr(Address) (void*)pgm_read_word(Address)
#endif
#endif
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment