aboutsummaryrefslogtreecommitdiff
path: root/LUFA/Common
diff options
context:
space:
mode:
authorDean <Dean@d5102386-fcda-11dd-9fdb-3debd5008f28>2011-04-13 06:58:29 +0000
committerDean <Dean@d5102386-fcda-11dd-9fdb-3debd5008f28>2011-04-13 06:58:29 +0000
commitb9b97474a266811dc3ff254a4e5487e0001b00a1 (patch)
tree017631bef998461381eba51000e922796cddb96a /LUFA/Common
parentdf6433808914d08040a92effc08034382a62308f (diff)
Fix definition of pgm_read_ptr().
git-svn-id: http://lufa-lib.googlecode.com/svn/trunk@1740 d5102386-fcda-11dd-9fdb-3debd5008f28
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 6a9356bb..e349063d 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