public inbox for u-boot@lists.denx.de
 help / color / mirror / Atom feed
* [U-Boot-Users] [PATCH] print_size: Enable printing of >= 4GB
@ 2008-07-09 15:35 Stefan Roese
  2008-07-09 16:16 ` Becky Bruce
  0 siblings, 1 reply; 3+ messages in thread
From: Stefan Roese @ 2008-07-09 15:35 UTC (permalink / raw)
  To: u-boot

Signed-off-by: Stefan Roese <sr@denx.de>
---
 lib_generic/display_options.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/lib_generic/display_options.c b/lib_generic/display_options.c
index a52fa04..99aa443 100644
--- a/lib_generic/display_options.c
+++ b/lib_generic/display_options.c
@@ -45,7 +45,7 @@ int display_options (void)
 void print_size (phys_size_t size, const char *s)
 {
 	ulong m, n;
-	ulong d = 1 << 20;		/* 1 MB */
+	phys_size_t d = 1 << 20;		/* 1 MB */
 	char  c = 'M';
 
 	if (size < d) {			/* print in kB */
-- 
1.5.6.2

^ permalink raw reply related	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2008-07-09 16:39 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2008-07-09 15:35 [U-Boot-Users] [PATCH] print_size: Enable printing of >= 4GB Stefan Roese
2008-07-09 16:16 ` Becky Bruce
2008-07-09 16:39   ` Stefan Roese

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox