aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDean <Dean@d5102386-fcda-11dd-9fdb-3debd5008f28>2011-04-04 15:25:30 +0000
committerDean <Dean@d5102386-fcda-11dd-9fdb-3debd5008f28>2011-04-04 15:25:30 +0000
commitaad4b2bb9f8adcd094a94180868416a9a3e0b1ba (patch)
treef51907ed9bbddf19e9d8e21200433df777d83469
parentdea170ec2c525f87d1d780d39e5c432f84f70222 (diff)
Oops - fix incorrect variable name in the updated Pipe_Write_8() function.
git-svn-id: http://lufa-lib.googlecode.com/svn/trunk@1727 d5102386-fcda-11dd-9fdb-3debd5008f28
-rw-r--r--LUFA/Drivers/USB/Core/AVR8/Pipe_AVR8.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/LUFA/Drivers/USB/Core/AVR8/Pipe_AVR8.h b/LUFA/Drivers/USB/Core/AVR8/Pipe_AVR8.h
index 74716a01..2e89f6de 100644
--- a/LUFA/Drivers/USB/Core/AVR8/Pipe_AVR8.h
+++ b/LUFA/Drivers/USB/Core/AVR8/Pipe_AVR8.h
@@ -598,7 +598,7 @@
static inline void Pipe_Write_8(const uint8_t Data) ATTR_ALWAYS_INLINE;
static inline void Pipe_Write_8(const uint8_t Data)
{
- UPDATX = Byte;
+ UPDATX = Data;
}
/** Discards one byte from the currently selected pipe's bank, for OUT direction pipes.