* grub-core/disk/ahci.c: Fix compilation for amd64 (format warnings).
This commit is contained in:
parent
bd69257a77
commit
9fb0fd4f35
2 changed files with 8 additions and 4 deletions
|
@ -1,3 +1,7 @@
|
|||
2013-04-28 Vladimir Serbinenko <phcoder@gmail.com>
|
||||
|
||||
* grub-core/disk/ahci.c: Fix compilation for amd64 (format warnings).
|
||||
|
||||
2013-04-28 Vladimir Serbinenko <phcoder@gmail.com>
|
||||
|
||||
* include/grub/efi/api.h (GRUB_EFI_DEVICE_PATH_LENGTH): Use
|
||||
|
|
|
@ -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);
|
||||
|
||||
|
|
Loading…
Reference in a new issue