diff options
author | blueswir1 <blueswir1@c046a42c-6fe2-441c-8c8c-71466251a162> | 2008-09-06 17:47:39 +0000 |
---|---|---|
committer | blueswir1 <blueswir1@c046a42c-6fe2-441c-8c8c-71466251a162> | 2008-09-06 17:47:39 +0000 |
commit | eb38c52c2a6df76928c1a4760bc87d21b256e22a (patch) | |
tree | 0b391e1d33f6f47a90f7c3fa8e63e863ee9f1b8e /hw/usb-ohci.c | |
parent | Some little fixes on QEMU (diff) | |
download | qemu-kvm-eb38c52c2a6df76928c1a4760bc87d21b256e22a.tar.gz qemu-kvm-eb38c52c2a6df76928c1a4760bc87d21b256e22a.tar.bz2 qemu-kvm-eb38c52c2a6df76928c1a4760bc87d21b256e22a.zip |
Fix most warnings that would be caused by gcc flag -Wundef
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@5173 c046a42c-6fe2-441c-8c8c-71466251a162
Diffstat (limited to 'hw/usb-ohci.c')
-rw-r--r-- | hw/usb-ohci.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/hw/usb-ohci.c b/hw/usb-ohci.c index 68995b070..afd55067d 100644 --- a/hw/usb-ohci.c +++ b/hw/usb-ohci.c @@ -1598,7 +1598,7 @@ static void usb_ohci_init(OHCIState *ohci, int num_ports, int devfn, int i; if (usb_frame_time == 0) { -#if OHCI_TIME_WARP +#ifdef OHCI_TIME_WARP usb_frame_time = ticks_per_sec; usb_bit_time = muldiv64(1, ticks_per_sec, USB_HZ/1000); #else |