b.liu | e958203 | 2025-04-17 19:18:16 +0800 | [diff] [blame^] | 1 | From df9fb90120423c4c55b66a5dc09af23f605a406b Mon Sep 17 00:00:00 2001 |
| 2 | From: Daniel Golle <daniel@makrotopia.org> |
| 3 | Date: Mon, 1 Dec 2014 21:37:25 +0100 |
| 4 | Subject: [PATCH] disk/part.c: use unsigned format when printing capacity |
| 5 | To: u-boot@lists.denx.de |
| 6 | |
| 7 | Large disks otherwise produce highly unplausible output such as |
| 8 | Capacity: 1907729.0 MB = 1863.0 GB (-387938128 x 512) |
| 9 | |
| 10 | As supposedly all size-related decimals are unsigned, use unsigned |
| 11 | format in printf statement, resulting in a correct capacity being |
| 12 | displayed: |
| 13 | Capacity: 1907729.0 MB = 1863.0 GB (3907029168 x 512) |
| 14 | |
| 15 | Signed-off-by: Daniel Golle <daniel@makrotopia.org> |
| 16 | --- |
| 17 | disk/part.c | 4 ++-- |
| 18 | 1 file changed, 2 insertions(+), 2 deletions(-) |
| 19 | |
| 20 | --- a/disk/part.c |
| 21 | +++ b/disk/part.c |
| 22 | @@ -229,13 +229,13 @@ void dev_print (block_dev_desc_t *dev_de |
| 23 | printf (" Supports 48-bit addressing\n"); |
| 24 | #endif |
| 25 | #if defined(CONFIG_SYS_64BIT_LBA) |
| 26 | - printf (" Capacity: %ld.%ld MB = %ld.%ld GB (%Ld x %ld)\n", |
| 27 | + printf (" Capacity: %lu.%lu MB = %lu.%lu GB (%Lu x %lu)\n", |
| 28 | mb_quot, mb_rem, |
| 29 | gb_quot, gb_rem, |
| 30 | lba, |
| 31 | dev_desc->blksz); |
| 32 | #else |
| 33 | - printf (" Capacity: %ld.%ld MB = %ld.%ld GB (%ld x %ld)\n", |
| 34 | + printf (" Capacity: %lu.%lu MB = %lu.%lu GB (%lu x %lu)\n", |
| 35 | mb_quot, mb_rem, |
| 36 | gb_quot, gb_rem, |
| 37 | (ulong)lba, |