Commit 0a6f9ca1 authored by Peter Lemenkov's avatar Peter Lemenkov Committed by Uwe Hermann
Browse files

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: default avatarPeter Lemenkov <lemenkov@gmail.com>
Acked-by: default avatarUwe Hermann <uwe@hermann-uwe.de>
parent eaf5ead4
......@@ -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;
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment