| Submitter | Isaku Yamahata |
|---|---|
| Date | Sept. 30, 2009, 10:17 a.m. |
| Message ID | <1254305917-14784-21-git-send-email-yamahata@valinux.co.jp> |
| Download | mbox | patch |
| Permalink | /patch/34530/ |
| State | Superseded |
| Headers | show |
Comments
Patch
diff --git a/hw/pci.c b/hw/pci.c index 64d70ed..4392574 100644 --- a/hw/pci.c +++ b/hw/pci.c @@ -29,7 +29,7 @@ //#define DEBUG_PCI #ifdef DEBUG_PCI -# define PCI_DPRINTF(format, ...) printf(format, __VA_ARGS__) +# define PCI_DPRINTF(format, ...) printf(format, ## __VA_ARGS__) #else # define PCI_DPRINTF(format, ...) do { } while (0) #endif
add missing ## in PCI_DPRINTF() to compile. Signed-off-by: Isaku Yamahata <yamahata@valinux.co.jp> --- hw/pci.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-)