From 14dcc343dc457fa4b6752969f5b7505acab0b907 Mon Sep 17 00:00:00 2001 From: maniacbug Date: Sat, 25 Jun 2011 21:22:20 -0700 Subject: [PATCH] Fixed unused parameter warning --- examples/led_remote/printf.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/led_remote/printf.h b/examples/led_remote/printf.h index 63501e4..df6c46a 100644 --- a/examples/led_remote/printf.h +++ b/examples/led_remote/printf.h @@ -18,7 +18,7 @@ #include "WProgram.h" -int serial_putc( char c, FILE *t ) +int serial_putc( char c, FILE * ) { Serial.write( c );