]> xenbits.xensource.com Git - qemu-xen-4.5-testing.git/commitdiff
few compile time warnings removed
authorIan Jackson <ian.jackson@eu.citrix.com>
Wed, 17 Sep 2008 11:02:13 +0000 (12:02 +0100)
committerIan Jackson <Ian.Jackson@eu.citrix.com>
Wed, 17 Sep 2008 11:02:13 +0000 (12:02 +0100)
Few small changes to remove some compile time warnings:

- we are not initializing the qemu_alarm_timer pointer in
init_timer_alarm, so I am adding a NULL initialization;

- in the headers include code, we are doing something like:

/* BSD stuff */
/* linux stuff */
/* sun stuff */

that works most of the times but it fails when you try to compile qemu
on mini-os, that is posix but it doesn't define either __sun__ or
__linux__, so I am changing it to:

/* BSD stuff */
/* linux stuff */
/* sun stuff */

Signed-off-by: Stefano Stabellini <stefano.stabellini@eu.citrix.com>
vl.c

diff --git a/vl.c b/vl.c
index 0fb9c176dcd13359cd7f3a7d1320c84a09f93342..86dbf8341f3668396e37fa2e97f5bf9323009a14 100644 (file)
--- a/vl.c
+++ b/vl.c
@@ -67,7 +67,7 @@
 #elif defined (__GLIBC__) && defined (__FreeBSD_kernel__)
 #include <freebsd/stdlib.h>
 #else
-#ifndef __sun__
+#ifdef __linux__
 #include <linux/if.h>
 #include <linux/if_tun.h>
 #include <pty.h>
@@ -81,7 +81,8 @@
 
 #include <linux/ppdev.h>
 #include <linux/parport.h>
-#else
+#endif
+#ifdef __sun__
 #include <sys/stat.h>
 #include <sys/ethernet.h>
 #include <sys/sockio.h>
@@ -1537,7 +1538,7 @@ static void win32_rearm_timer(struct qemu_alarm_timer *t)
 
 static void init_timer_alarm(void)
 {
-    struct qemu_alarm_timer *t;
+    struct qemu_alarm_timer *t = NULL;
     int i, err = -1;
 
     for (i = 0; alarm_timers[i].name; i++) {