qemu-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Qemu-devel] [4303] Avoid a build warning.


From: Edgar E. Iglesias
Subject: [Qemu-devel] [4303] Avoid a build warning.
Date: Fri, 02 May 2008 22:47:35 +0000

Revision: 4303
          http://svn.sv.gnu.org/viewvc/?view=rev&root=qemu&revision=4303
Author:   edgar_igl
Date:     2008-05-02 22:47:34 +0000 (Fri, 02 May 2008)

Log Message:
-----------
Avoid a build warning.

Modified Paths:
--------------
    trunk/hw/etraxfs_timer.c

Modified: trunk/hw/etraxfs_timer.c
===================================================================
--- trunk/hw/etraxfs_timer.c    2008-05-02 22:38:53 UTC (rev 4302)
+++ trunk/hw/etraxfs_timer.c    2008-05-02 22:47:34 UTC (rev 4303)
@@ -180,8 +180,9 @@
                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);
 }






reply via email to

[Prev in Thread] Current Thread [Next in Thread]