diff options
author | Dean Camera <dean@fourwalledcubicle.com> | 2011-04-13 06:58:29 +0000 |
---|---|---|
committer | Dean Camera <dean@fourwalledcubicle.com> | 2011-04-13 06:58:29 +0000 |
commit | 04263de4f06e720f2bb3f8e7b5a3d5910b52978d (patch) | |
tree | 017631bef998461381eba51000e922796cddb96a /LUFA/Common | |
parent | e0852408de92eada94b242cf84b007dc4f188467 (diff) | |
download | lufa-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.h | 2 |
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 |