From: Vladimir 'phcoder' Serbinenko Date: Sun, 28 Apr 2013 13:17:43 +0000 (+0200) Subject: * grub-core/disk/ahci.c: Fix compilation for amd64 (format warnings). X-Git-Tag: grub-2.02-beta1~1085 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=9fb0fd4f358c267f86baebff226801a362ab2225;p=thirdparty%2Fgrub.git * grub-core/disk/ahci.c: Fix compilation for amd64 (format warnings). --- diff --git a/ChangeLog b/ChangeLog index 727a8c8e3..8b4206eaf 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +2013-04-28 Vladimir Serbinenko + + * grub-core/disk/ahci.c: Fix compilation for amd64 (format warnings). + 2013-04-28 Vladimir Serbinenko * include/grub/efi/api.h (GRUB_EFI_DEVICE_PATH_LENGTH): Use diff --git a/grub-core/disk/ahci.c b/grub-core/disk/ahci.c index 47fd423e4..e6170426e 100644 --- a/grub-core/disk/ahci.c +++ b/grub-core/disk/ahci.c @@ -531,8 +531,8 @@ grub_ahci_pciinit (grub_pci_device_t dev, adevs[i]->hba->ports[adevs[i]->port].sata_error); grub_dprintf ("ahci", "offset: %x, tfd:%x, CMD: %x\n", - (char *) &adevs[i]->hba->ports[adevs[i]->port].task_file_data - - (char *) adevs[i]->hba, + (int) ((char *) &adevs[i]->hba->ports[adevs[i]->port].task_file_data - + (char *) adevs[i]->hba), adevs[i]->hba->ports[adevs[i]->port].task_file_data, adevs[i]->hba->ports[adevs[i]->port].command); @@ -545,8 +545,8 @@ grub_ahci_pciinit (grub_pci_device_t dev, if (adevs[i]) { grub_dprintf ("ahci", "offset: %x, tfd:%x, CMD: %x\n", - (char *) &adevs[i]->hba->ports[adevs[i]->port].task_file_data - - (char *) adevs[i]->hba, + (int) ((char *) &adevs[i]->hba->ports[adevs[i]->port].task_file_data - + (char *) adevs[i]->hba), adevs[i]->hba->ports[adevs[i]->port].task_file_data, adevs[i]->hba->ports[adevs[i]->port].command);