2009-04-27 Vladimir Serbinenko <phcoder@gmail.com>

Warning fix

	* disk/scsi.c (grub_scsi_open): added missing cast when 
	calling grub_dprintf
This commit is contained in:
phcoder 2009-04-27 15:39:39 +00:00
parent a5562c306f
commit 5af922b5f1
2 changed files with 9 additions and 1 deletions

View File

@ -1,3 +1,10 @@
2009-04-27 Vladimir Serbinenko <phcoder@gmail.com>
Warning fix
* disk/scsi.c (grub_scsi_open): added missing cast when
calling grub_dprintf
2009-04-26 Vladimir Serbinenko <phcoder@gmail.com>
Bug and warning fixes

View File

@ -301,7 +301,8 @@ grub_scsi_open (const char *name, grub_disk_t disk)
<< GRUB_DISK_SECTOR_BITS);
grub_dprintf ("scsi", "capacity=%llu, blksize=%d\n",
disk->total_sectors, scsi->blocksize);
(unsigned long long) disk->total_sectors,
scsi->blocksize);
return GRUB_ERR_NONE;
}