From: Vladimir 'phcoder' Serbinenko Date: Wed, 2 Jun 2010 14:46:55 +0000 (+0200) Subject: Add necessarry cast X-Git-Tag: 1.99~852^2~4 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=8bd3a1fb3027c7e05be06d5145bd8d16ee1bcbeb;p=thirdparty%2Fgrub.git Add necessarry cast --- diff --git a/disk/scsi.c b/disk/scsi.c index dffabc26e..5d3e50966 100644 --- a/disk/scsi.c +++ b/disk/scsi.c @@ -460,7 +460,7 @@ grub_scsi_open (const char *name, grub_disk_t disk) grub_dprintf ("scsi", "blocks=%u, blocksize=%u\n", scsi->size, scsi->blocksize); grub_dprintf ("scsi", "Disk total 512 sectors = %llu\n", - disk->total_sectors); + (unsigned long long) disk->total_sectors); return GRUB_ERR_NONE; }