From 9124f65de04a6f7dd8c8d2fc6eb92a8dff3bb7f4 Mon Sep 17 00:00:00 2001 From: robertmh Date: Wed, 3 Sep 2008 10:52:07 +0000 Subject: [PATCH] 2008-09-03 Robert Millan * disk/scsi.c (grub_scsi_open): Remove size limit when printing `disk->total_sectors'. --- ChangeLog | 5 +++++ disk/scsi.c | 4 ++-- 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/ChangeLog b/ChangeLog index 171ad08ea..ad1e6adaf 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2008-09-03 Robert Millan + + * disk/scsi.c (grub_scsi_open): Remove size limit when printing + `disk->total_sectors'. + 2008-09-01 Colin D Bennett * include/grub/normal.h: Fixed incorrect comment for diff --git a/disk/scsi.c b/disk/scsi.c index 01ef04ee7..aad59b5a3 100644 --- a/disk/scsi.c +++ b/disk/scsi.c @@ -300,8 +300,8 @@ grub_scsi_open (const char *name, grub_disk_t disk) disk->total_sectors = ((scsi->size * scsi->blocksize) << GRUB_DISK_SECTOR_BITS); - grub_dprintf ("scsi", "capacity=%d, blksize=%d\n", - (int) disk->total_sectors, scsi->blocksize); + grub_dprintf ("scsi", "capacity=%llu, blksize=%d\n", + disk->total_sectors, scsi->blocksize); return GRUB_ERR_NONE; }