Re: [U-Boot] [PATCH 1/3] cmd_nvedit: use explicit typecast for printf

2011-04-12 Thread Wolfgang Denk
Dear =?UTF-8?q?Andreas=20Bie=C3=9Fmann?=,

In message 1297260631-13864-2-git-send-email-biessm...@corscience.de you 
wrote:
 This patch fixes warnings in MAKEALL for avr32:
 
 ---8---
 cmd_nvedit.c: In function 'do_env_export':
 cmd_nvedit.c:663: warning: format '%zX' expects type 'size_t', but argument 3 
 has type 'ssize_t'
 ---8---
 
 Signed-off-by: Andreas Bießmann biessm...@corscience.de
 ---
  common/cmd_nvedit.c |4 ++--
  1 files changed, 2 insertions(+), 2 deletions(-)

Applied, thanks.

Best regards,

Wolfgang Denk

-- 
DENX Software Engineering GmbH, MD: Wolfgang Denk  Detlev Zundel
HRB 165235 Munich, Office: Kirchenstr.5, D-82194 Groebenzell, Germany
Phone: (+49)-8142-66989-10 Fax: (+49)-8142-66989-80 Email: w...@denx.de
If you want strict real-time behavior, run in the real  time  schedu-
ling class.  But there are no seatbelts or airbags;  main(){for(;;);}
can hard hang your system.  -- Bart Smaalders
___
U-Boot mailing list
U-Boot@lists.denx.de
http://lists.denx.de/mailman/listinfo/u-boot


[U-Boot] [PATCH 1/3] cmd_nvedit: use explicit typecast for printf

2011-02-09 Thread Andreas Bießmann
This patch fixes warnings in MAKEALL for avr32:

---8---
cmd_nvedit.c: In function 'do_env_export':
cmd_nvedit.c:663: warning: format '%zX' expects type 'size_t', but argument 3 
has type 'ssize_t'
---8---

Signed-off-by: Andreas Bießmann biessm...@corscience.de
---
 common/cmd_nvedit.c |4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/common/cmd_nvedit.c b/common/cmd_nvedit.c
index fb69c24..6d8512a 100644
--- a/common/cmd_nvedit.c
+++ b/common/cmd_nvedit.c
@@ -659,7 +659,7 @@ static int do_env_export(cmd_tbl_t *cmdtp, int flag, int 
argc, char * const argv
errno);
return 1;
}
-   sprintf(buf, %zX, len);
+   sprintf(buf, %zX, (size_t)len);
setenv(filesize, buf);
 
return 0;
@@ -685,7 +685,7 @@ static int do_env_export(cmd_tbl_t *cmdtp, int flag, int 
argc, char * const argv
envp-flags = ACTIVE_FLAG;
 #endif
}
-   sprintf(buf, %zX, len + offsetof(env_t,data));
+   sprintf(buf, %zX, (size_t)(len + offsetof(env_t,data)));
setenv(filesize, buf);
 
return 0;
-- 
1.7.2.3

___
U-Boot mailing list
U-Boot@lists.denx.de
http://lists.denx.de/mailman/listinfo/u-boot