summaryrefslogtreecommitdiff
path: root/util/cbfstool/lzma
diff options
context:
space:
mode:
authorAlexandru Gagniuc <mr.nuke.me@gmail.com>2014-01-29 14:27:52 -0600
committerAlexandru Gagniuc <mr.nuke.me@gmail.com>2014-02-10 05:43:56 +0100
commitae45a9884b82c2e2bfcf87afeb45260706a27adc (patch)
treec14fe4cb078934d6ad054e554fbfb5ac7f7a4bad /util/cbfstool/lzma
parentb33384a03c903d4a12a4e4f2805bfb53ff96ff3d (diff)
downloadcoreboot-ae45a9884b82c2e2bfcf87afeb45260706a27adc.tar.xz
cbfstool: Fix build errors when building with clang
Now that we can set CC to an arbitrary compiler, fix issues that clang finds. Luckily, there were only two trivial errors. Change-Id: I0fd1f0f263a8ab7004f39cd36ed42d1a1cba5c04 Signed-off-by: Alexandru Gagniuc <mr.nuke.me@gmail.com> Reviewed-on: http://review.coreboot.org/5081 Tested-by: build bot (Jenkins) Reviewed-by: Paul Menzel <paulepanter@users.sourceforge.net> Reviewed-by: Ronald G. Minnich <rminnich@gmail.com>
Diffstat (limited to 'util/cbfstool/lzma')
-rw-r--r--util/cbfstool/lzma/C/LzmaEnc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/util/cbfstool/lzma/C/LzmaEnc.c b/util/cbfstool/lzma/C/LzmaEnc.c
index 9b18b19688..e112a4a8b1 100644
--- a/util/cbfstool/lzma/C/LzmaEnc.c
+++ b/util/cbfstool/lzma/C/LzmaEnc.c
@@ -2080,7 +2080,7 @@ static void LzmaEnc_Finish(CLzmaEncHandle pp)
if (p->mtMode)
MatchFinderMt_ReleaseStream(&p->matchFinderMt);
#else
- pp = pp;
+ (void)pp;
#endif
}