summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFrank Gevaerts <frank@gevaerts.be>2011-08-01 20:21:34 +0000
committerFrank Gevaerts <frank@gevaerts.be>2011-08-01 20:21:34 +0000
commit68e066f400e7fb0b19e7aec0d85f5193335a32e4 (patch)
treef85610b5e8adc3fb90ed0af7f1da2d6de06e83f9
parent038a608bb7728cef523b297e33a45a4b258c9c58 (diff)
#ifdef hell makes effectively suppressing this warning impossible, so stop trying
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@30238 a1c6a512-1295-4272-9138-f99709370657
-rw-r--r--apps/recorder/bmp.c6
1 files changed, 0 insertions, 6 deletions
diff --git a/apps/recorder/bmp.c b/apps/recorder/bmp.c
index bc3b754e4d..d6f61d1c87 100644
--- a/apps/recorder/bmp.c
+++ b/apps/recorder/bmp.c
@@ -858,11 +858,5 @@ int read_bmp_fd(int fd,
}
#endif
}
-#ifdef HAVE_REMOTE_LCD
- /* Thanks to the mass of #ifdefs in this function, there are cases where
- * remote is never read, so we need to suppress the resulting warnings
- * (or rewrite the lot)*/
- (void)remote;
-#endif
return totalsize; /* return the used buffer size. */
}