From 04263de4f06e720f2bb3f8e7b5a3d5910b52978d Mon Sep 17 00:00:00 2001 From: Dean Camera Date: Wed, 13 Apr 2011 06:58:29 +0000 Subject: Fix definition of pgm_read_ptr(). --- LUFA/Common/Common.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'LUFA/Common') 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 -- cgit v1.2.3