* disk/scsi.c (grub_scsi_open): Remove size limit when printing
`disk->total_sectors'.
+2008-09-03 Robert Millan <rmh@aybabtu.com>
+
+ * disk/scsi.c (grub_scsi_open): Remove size limit when printing
+ `disk->total_sectors'.
+
2008-09-01 Colin D Bennett <colin@gibibit.com>
* include/grub/normal.h: Fixed incorrect comment for
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;
}