mirror of
https://gitlab.com/qemu-project/qemu
synced 2024-11-02 22:41:07 +00:00
Fix compilation error (missing include statement)
./hw/sd.c: In function ‘sd_init’: ./hw/sd.c:443: error: implicit declaration of function ‘qemu_blockalign’ ./hw/sd.c:443: error: nested extern declaration of ‘qemu_blockalign’ ./hw/sd.c:443: error: assignment makes pointer from integer without a cast Cc: Christoph Hellwig <hch@lst.de> Cc: Kevin Wolf <kwolf@redhat.com> Signed-off-by: Stefan Weil <weil@mail.berlios.de> Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
This commit is contained in:
parent
e1bb0a1a6c
commit
879f065557
1 changed files with 1 additions and 0 deletions
1
hw/sd.c
1
hw/sd.c
|
@ -31,6 +31,7 @@
|
|||
|
||||
#include "hw.h"
|
||||
#include "block.h"
|
||||
#include "block_int.h"
|
||||
#include "sd.h"
|
||||
|
||||
//#define DEBUG_SD 1
|
||||
|
|
Loading…
Reference in a new issue