public inbox for u-boot@lists.denx.de
 help / color / mirror / Atom feed
From: Marek Vasut <marek.vasut@gmail.com>
To: u-boot@lists.denx.de
Subject: [U-Boot] [PATCH 4/5] GCC4.6: Squash warning in cmd_ubi.c:
Date: Fri, 30 Sep 2011 12:13:25 +0200	[thread overview]
Message-ID: <1317377606-9830-4-git-send-email-marek.vasut@gmail.com> (raw)
In-Reply-To: <1317377606-9830-1-git-send-email-marek.vasut@gmail.com>

cmd_ubi.c: In function ?ubi_volume_read?:
cmd_ubi.c:319:9: warning: variable ?count_save? set but not used
[-Wunused-but-set-variable]

Signed-off-by: Marek Vasut <marek.vasut@gmail.com>
---
 common/cmd_ubi.c |    3 +--
 1 files changed, 1 insertions(+), 2 deletions(-)

diff --git a/common/cmd_ubi.c b/common/cmd_ubi.c
index 629758f..8c1bc23 100644
--- a/common/cmd_ubi.c
+++ b/common/cmd_ubi.c
@@ -316,7 +316,6 @@ static int ubi_volume_write(char *volume, void *buf, size_t size)
 static int ubi_volume_read(char *volume, char *buf, size_t size)
 {
 	int err, lnum, off, len, tbuf_size;
-	size_t count_save = size;
 	void *tbuf;
 	unsigned long long tmp;
 	struct ubi_volume *vol;
@@ -347,7 +346,7 @@ static int ubi_volume_read(char *volume, char *buf, size_t size)
 	if (vol->corrupted)
 		printf("read from corrupted volume %d", vol->vol_id);
 	if (offp + size > vol->used_bytes)
-		count_save = size = vol->used_bytes - offp;
+		size = vol->used_bytes - offp;
 
 	tbuf_size = vol->usable_leb_size;
 	if (size < tbuf_size)
-- 
1.7.5.4

  parent reply	other threads:[~2011-09-30 10:13 UTC|newest]

Thread overview: 16+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2011-09-30 10:13 [U-Boot] [PATCH 1/5] GCC4.6: Squash warning in nand_bbt.c Marek Vasut
2011-09-30 10:13 ` [U-Boot] [PATCH 2/5] GCC4,6: Squash warning in cmd_nand.c Marek Vasut
2011-09-30 10:14   ` Marek Vasut
2011-10-03 16:22     ` Scott Wood
2011-09-30 15:57   ` Mike Frysinger
2011-10-01 21:31   ` Wolfgang Denk
2011-09-30 10:13 ` [U-Boot] [PATCH 3/5] GCC4.6: Squash warning in vmt.c Marek Vasut
2011-09-30 10:19   ` [U-Boot] [PATCH 3/5 V2] " Marek Vasut
2011-09-30 15:57     ` Mike Frysinger
2011-09-30 15:57   ` [U-Boot] [PATCH 3/5] " Mike Frysinger
2011-09-30 10:13 ` Marek Vasut [this message]
2011-09-30 15:54   ` [U-Boot] [PATCH 4/5] GCC4.6: Squash warning in cmd_ubi.c: Mike Frysinger
2011-09-30 10:13 ` [U-Boot] [PATCH 5/5] GCC4.6: Squash warning in lzo1x_decompress.c Marek Vasut
2011-09-30 15:56   ` Mike Frysinger
2011-09-30 15:57 ` [U-Boot] [PATCH 1/5] GCC4.6: Squash warning in nand_bbt.c Mike Frysinger
2011-10-01 21:28 ` Wolfgang Denk

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1317377606-9830-4-git-send-email-marek.vasut@gmail.com \
    --to=marek.vasut@gmail.com \
    --cc=u-boot@lists.denx.de \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox