diff options
author | pbrook <pbrook@c046a42c-6fe2-441c-8c8c-71466251a162> | 2006-05-14 13:44:07 +0000 |
---|---|---|
committer | pbrook <pbrook@c046a42c-6fe2-441c-8c8c-71466251a162> | 2006-05-14 13:44:07 +0000 |
commit | 5c3ff3a7be1b6fa0ad071a8de98400e24e158dcc (patch) | |
tree | 11d7cc6a9db008a7164c850e550ec71bd1949a51 | |
parent | 0cb3fb1e30a7789881e184b1134f2f47752b64d5 (diff) |
Avoid compiler warning.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@1922 c046a42c-6fe2-441c-8c8c-71466251a162
-rw-r--r-- | hw/pc.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -611,7 +611,7 @@ static void pc_init1(int ram_size, int vga_ram_size, int boot_device, unsigned long bios_offset, vga_bios_offset; int bios_size, isa_bios_size; PCIBus *pci_bus; - int piix3_devfn; + int piix3_devfn = -1; CPUState *env; NICInfo *nd; |