diff mbox

[U-Boot,2/2] post/post.c: fix GCC 4.6 build warnings

Message ID 1319917343-14604-2-git-send-email-wd@denx.de
State Accepted
Commit 4d6402b012b074f4658785773c97745963c52dc5
Headers show

Commit Message

Wolfgang Denk Oct. 29, 2011, 7:42 p.m. UTC
Fix:
post.c: In function 'post_log':
post.c:425:7: warning: variable 'i' set but not used
[-Wunused-but-set-variable]

Signed-off-by: Wolfgang Denk <wd@denx.de>
---
 post/post.c |    3 +--
 1 files changed, 1 insertions(+), 2 deletions(-)

Comments

Wolfgang Denk Nov. 3, 2011, 7:44 p.m. UTC | #1
Dear Wolfgang Denk,

In message <1319917343-14604-2-git-send-email-wd@denx.de> you wrote:
> Fix:
> post.c: In function 'post_log':
> post.c:425:7: warning: variable 'i' set but not used
> [-Wunused-but-set-variable]
> 
> Signed-off-by: Wolfgang Denk <wd@denx.de>
> ---
>  post/post.c |    3 +--
>  1 files changed, 1 insertions(+), 2 deletions(-)

Applied, thanks.

Best regards,

Wolfgang Denk
diff mbox

Patch

diff --git a/post/post.c b/post/post.c
index ab8e959..0e67ad7 100644
--- a/post/post.c
+++ b/post/post.c
@@ -417,7 +417,6 @@  int post_info(char *name)
 int post_log(char *format, ...)
 {
 	va_list args;
-	uint i;
 	char printbuffer[CONFIG_SYS_PBSIZE];
 
 	va_start(args, format);
@@ -425,7 +424,7 @@  int post_log(char *format, ...)
 	/* For this to work, printbuffer must be larger than
 	 * anything we ever want to print.
 	 */
-	i = vsprintf(printbuffer, format, args);
+	vsprintf(printbuffer, format, args);
 	va_end(args);
 
 #ifdef CONFIG_LOGBUFFER