aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBen Hewson <ben@hewson-venieri.com>2007-05-20 17:10:17 +0000
committerUwe Hermann <uwe@hermann-uwe.de>2007-05-20 17:10:17 +0000
commit917bf6b99e04320949c99289d456d9f9a79b4dee (patch)
treef053615031d7acf9c85dc2c156f005f4a501c994
parent7f4040af820372764a4038acb80f42f60148aced (diff)
Here is a small fix to prevent a segmentation fault in lbtdump.
The format specifier in the printf statements have been changed from %08lx to %08llx or similar where uint64_t are being displayed. Signed-off-by: Ben Hewson <ben@hewson-venieri.com> Acked-by: Uwe Hermann <uwe@hermann-uwe.de> git-svn-id: svn://svn.coreboot.org/coreboot/trunk@2679 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
-rw-r--r--util/lbtdump/lbtdump.c16
1 files changed, 8 insertions, 8 deletions
diff --git a/util/lbtdump/lbtdump.c b/util/lbtdump/lbtdump.c
index e799e8d0c3..d94eb6e165 100644
--- a/util/lbtdump/lbtdump.c
+++ b/util/lbtdump/lbtdump.c
@@ -110,30 +110,30 @@ void pretty_print_number(FILE *stream, uint64_t value)
{
if (value > 1024ULL*1024*1024*1024*1024*1024) {
value /= 1024ULL*1024*1024*1024*1024*1024;
- fprintf(stream, "%ldEB", value);
+ fprintf(stream, "%lldEB", value);
}
else if (value > 1024ULL*1024*1024*1024*1024) {
value /= 1024ULL*1024*1024*1024*1024;
- fprintf(stream, "%ldPB", value);
+ fprintf(stream, "%lldPB", value);
}
else if (value > 1024ULL*1024*1024*1024) {
value /= 1024ULL*1024*1024*1024;
- fprintf(stream, "%ldTB", value);
+ fprintf(stream, "%lldTB", value);
}
else if (value > 1024ULL*1024*1024) {
value /= 1024ULL*1024*1024;
- fprintf(stream, "%ldGB", value);
+ fprintf(stream, "%lldGB", value);
}
else if (value > 1024ULL*1024) {
value /= 1024ULL*1024;
- fprintf(stream, "%ldMB", value);
+ fprintf(stream, "%lldMB", value);
}
else if (value > 1024ULL) {
value /= 1024ULL;
- fprintf(stream, "%ldKB", value);
+ fprintf(stream, "%lldKB", value);
}
else {
- fprintf(stream, "%ldB", value);
+ fprintf(stream, "%lldB", value);
}
}
@@ -156,7 +156,7 @@ void print_memory(struct lb_record *ptr, unsigned long addr)
default:
case 2: mem_type = "reserved"; break;
}
- printf("0x%08lx - 0x%08lx %s (",
+ printf("0x%08llx - 0x%08llx %s (",
start, end, mem_type);
pretty_print_number(stdout, start);
printf(" - ");