From b770038cb64484f3cb9739dbea95247afc1863de Mon Sep 17 00:00:00 2001 From: mlalondesvn Date: Fri, 6 Feb 2009 16:12:28 +0000 Subject: [PATCH] FIXED - typo git-svn-id: svn+ssh://oldsvn/home/mlalondesvn/svn/cral@142 3ee9b42a-b53c-0410-a25e-f0b6218d5d5b --- SPrint/staticPrint.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/SPrint/staticPrint.h b/SPrint/staticPrint.h index ec7fd0a..4b40516 100644 --- a/SPrint/staticPrint.h +++ b/SPrint/staticPrint.h @@ -29,12 +29,12 @@ static inline void SPrint_P(const char *data) while (!(UCSRA & (1 << UDRE))) ; - UDR = c; + UDR = ch; #else while (!(UCSR0A & (1 << UDRE0))) ; - UDR0 = c; + UDR0 = ch; #endif } }