Package: qemu Version: 0.6.0 Author: Guillem Jover Status: not-applied Description: Fix typo in openpic timer test. diff -Naur qemu-0.6.0.dfsg.2.orig/hw/openpic.c qemu-0.6.0.dfsg.2/hw/openpic.c --- qemu-0.6.0.dfsg.2.orig/hw/openpic.c 2004-07-10 20:20:09.000000000 +0200 +++ qemu-0.6.0.dfsg.2/hw/openpic.c 2004-11-15 08:44:01.000000000 +0100 @@ -629,7 +629,7 @@ break; case 0x10: /* TIBC */ if ((opp->timers[idx].ticc & 0x80000000) != 0 && - (val & 0x800000000) == 0 && + (val & 0x80000000) == 0 && (opp->timers[idx].tibc & 0x80000000) != 0) opp->timers[idx].ticc &= ~0x80000000; opp->timers[idx].tibc = val;