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);