aboutsummaryrefslogtreecommitdiffstats
path: root/LUFA/Common
diff options
context:
space:
mode:
authorDean Camera <dean@fourwalledcubicle.com>2011-04-13 06:58:29 +0000
committerDean Camera <dean@fourwalledcubicle.com>2011-04-13 06:58:29 +0000
commit04263de4f06e720f2bb3f8e7b5a3d5910b52978d (patch)
tree017631bef998461381eba51000e922796cddb96a /LUFA/Common
parente0852408de92eada94b242cf84b007dc4f188467 (diff)
downloadlufa-04263de4f06e720f2bb3f8e7b5a3d5910b52978d.tar.gz
lufa-04263de4f06e720f2bb3f8e7b5a3d5910b52978d.tar.bz2
lufa-04263de4f06e720f2bb3f8e7b5a3d5910b52978d.zip
Fix definition of pgm_read_ptr().
Diffstat (limited to 'LUFA/Common')
-rw-r--r--LUFA/Common/Common.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/LUFA/Common/Common.h b/LUFA/Common/Common.h
index 6a9356bbb..e349063da 100644
--- a/LUFA/Common/Common.h
+++ b/LUFA/Common/Common.h
@@ -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