sim-card
/
qemu
Archived
10
0
Fork 0

Avoid a build warning.

git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@4303 c046a42c-6fe2-441c-8c8c-71466251a162
This commit is contained in:
edgar_igl 2008-05-02 22:47:34 +00:00
parent b01cde7bdf
commit 63c1d9252a
1 changed files with 2 additions and 1 deletions

View File

@ -180,8 +180,9 @@ static void timer_update_irq(struct fs_timer_t *t)
qemu_irq_lower(t->irq[0]);
}
static void timer_hit(struct fs_timer_t *t)
static void timer_hit(void *opaque)
{
struct fs_timer_t *t = opaque;
t->r_intr |= 1;
timer_update_irq(t);
}