From 0a6f9ca171a205129573c11564c91701bc45f83c Mon Sep 17 00:00:00 2001 From: Peter Lemenkov Date: Mon, 20 Sep 2010 17:23:38 +0000 Subject: internal: remove unused variable The variable 'ret' is unused when compiling on big-endian architecture. This produces an "unused variable" message, which might be treated as error if -Werror was passed to compiler. With this patch I was able to compile flashrom cleanly on ppc and ppc64: http://koji.fedoraproject.org/koji/taskinfo?taskID=2472482 http://koji.fedoraproject.org/koji/taskinfo?taskID=2472484 Corresponding to flashrom svn r1180. Signed-off-by: Peter Lemenkov Acked-by: Uwe Hermann --- internal.c | 2 ++ 1 file changed, 2 insertions(+) (limited to 'internal.c') diff --git a/internal.c b/internal.c index 8b19692fa..497ce6cc8 100644 --- a/internal.c +++ b/internal.c @@ -118,7 +118,9 @@ int is_laptop = 0; int internal_init(void) { +#if __FLASHROM_LITTLE_ENDIAN__ int ret = 0; +#endif int force_laptop = 0; char *arg; -- cgit v1.2.3