Re: [U-Boot-Users] [PATCH] Fix more printf() format warnings

2008-07-29 Thread Wolfgang Denk
In message [EMAIL PROTECTED] you wrote:
 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD [EMAIL PROTECTED]
 ---
  common/cmd_flash.c |4 ++--
  drivers/usb/usbdcore.c |2 +-
  2 files changed, 3 insertions(+), 3 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: [EMAIL PROTECTED]
My name is Linus Torvalds, you messed with my kernel, prepare to die
  - Linus Torvalds in
  [EMAIL PROTECTED]

-
This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
Build the coolest Linux based applications with Moblin SDK  win great prizes
Grand prize is a trip for two to an Open Source event anywhere in the world
http://moblin-contest.org/redirect.php?banner_id=100url=/
___
U-Boot-Users mailing list
U-Boot-Users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/u-boot-users


[U-Boot-Users] [PATCH] Fix more printf() format warnings

2008-07-27 Thread Jean-Christophe PLAGNIOL-VILLARD
Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD [EMAIL PROTECTED]
---
 common/cmd_flash.c |4 ++--
 drivers/usb/usbdcore.c |2 +-
 2 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/common/cmd_flash.c b/common/cmd_flash.c
index a7f66dd..18d2250 100644
--- a/common/cmd_flash.c
+++ b/common/cmd_flash.c
@@ -342,7 +342,7 @@ int do_flerase (cmd_tbl_t *cmdtp, int flag, int argc, char 
*argv[])
puts (Bad sector specification\n);
return 1;
}
-   printf (Erase Flash Sectors %d-%d in Bank # %d ,
+   printf (Erase Flash Sectors %d-%d in Bank # %zu ,
sect_first, sect_last, (info-flash_info)+1);
rcode = flash_erase(info, sect_first, sect_last);
return rcode;
@@ -534,7 +534,7 @@ int do_protect (cmd_tbl_t *cmdtp, int flag, int argc, char 
*argv[])
puts (Bad sector specification\n);
return 1;
}
-   printf(%sProtect Flash Sectors %d-%d in Bank # %d\n,
+   printf(%sProtect Flash Sectors %d-%d in Bank # %zu\n,
p ?  : Un-, sect_first, sect_last,
(info-flash_info)+1);
for (i = sect_first; i = sect_last; i++) {
diff --git a/drivers/usb/usbdcore.c b/drivers/usb/usbdcore.c
index 808da9f..53ed669 100644
--- a/drivers/usb/usbdcore.c
+++ b/drivers/usb/usbdcore.c
@@ -552,7 +552,7 @@ struct urb *usbd_alloc_urb (struct usb_device_instance 
*device,
struct urb *urb;
 
if (!(urb = (struct urb *) malloc (sizeof (struct urb {
-   usberr ( F A T A L:  malloc(%u) FAILED,
+   usberr ( F A T A L:  malloc(%zu) FAILED,
sizeof (struct urb));
return NULL;
}
-- 
1.5.6


-
This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
Build the coolest Linux based applications with Moblin SDK  win great prizes
Grand prize is a trip for two to an Open Source event anywhere in the world
http://moblin-contest.org/redirect.php?banner_id=100url=/
___
U-Boot-Users mailing list
U-Boot-Users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/u-boot-users