Commit e3d7e8431eb4c6c20dae7e45c6e0fa223003ecdd

Authored by ths
1 parent 7df526e3

Fix typo, spotted by Samuel Thibault.


git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3558 c046a42c-6fe2-441c-8c8c-71466251a162
Showing 1 changed file with 1 additions and 1 deletions
hw/rtl8139.c
@@ -1464,7 +1464,7 @@ static void rtl8139_BasicModeCtrl_write(RTL8139State *s, uint32_t val) @@ -1464,7 +1464,7 @@ static void rtl8139_BasicModeCtrl_write(RTL8139State *s, uint32_t val)
1464 DEBUG_PRINT(("RTL8139: BasicModeCtrl register write(w) val=0x%04x\n", val)); 1464 DEBUG_PRINT(("RTL8139: BasicModeCtrl register write(w) val=0x%04x\n", val));
1465 1465
1466 /* mask unwriteable bits */ 1466 /* mask unwriteable bits */
1467 - uint32 mask = 0x4cff; 1467 + uint32_t mask = 0x4cff;
1468 1468
1469 if (1 || !rtl8139_config_writeable(s)) 1469 if (1 || !rtl8139_config_writeable(s))
1470 { 1470 {