From f76e277eb2af7775794a08232fa77b9df86328ea Mon Sep 17 00:00:00 2001 From: Dean Date: Wed, 13 Apr 2011 06:58:29 +0000 Subject: Fix definition of pgm_read_ptr(). git-svn-id: http://lufa-lib.googlecode.com/svn/tags/LUFA-110528-QA@1740 d5102386-fcda-11dd-9fdb-3debd5008f28 --- LUFA/Common/Common.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 -- cgit v1.2.3