qemu-commits
[Top][All Lists]
Advanced

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

[Qemu-commits] [COMMIT 1e6eec8] Fix Sparse warnings: add "static"


From: Anthony Liguori
Subject: [Qemu-commits] [COMMIT 1e6eec8] Fix Sparse warnings: add "static"
Date: Sat, 05 Sep 2009 14:41:25 -0000

From: Blue Swirl <address@hidden>

Signed-off-by: Blue Swirl <address@hidden>

diff --git a/linux-user/mmap.c b/linux-user/mmap.c
index 6ce4167..07ce051 100644
--- a/linux-user/mmap.c
+++ b/linux-user/mmap.c
@@ -34,7 +34,7 @@
 //#define DEBUG_MMAP
 
 #if defined(CONFIG_USE_NPTL)
-pthread_mutex_t mmap_mutex = PTHREAD_MUTEX_INITIALIZER;
+static pthread_mutex_t mmap_mutex = PTHREAD_MUTEX_INITIALIZER;
 static int __thread mmap_lock_count;
 
 void mmap_lock(void)
diff --git a/slirp/slirp.c b/slirp/slirp.c
index 691420e..d4a9bac 100644
--- a/slirp/slirp.c
+++ b/slirp/slirp.c
@@ -104,7 +104,7 @@ static void winsock_cleanup(void)
 
 #else
 
-struct stat dns_addr_stat;
+static struct stat dns_addr_stat;
 
 int get_dns_addr(struct in_addr *pdns_addr)
 {
diff --git a/target-i386/ops_sse.h b/target-i386/ops_sse.h
index 47a01d4..709732a 100644
--- a/target-i386/ops_sse.h
+++ b/target-i386/ops_sse.h
@@ -895,7 +895,7 @@ SSE_HELPER_CMP(cmpnlt, FPU_CMPNLT)
 SSE_HELPER_CMP(cmpnle, FPU_CMPNLE)
 SSE_HELPER_CMP(cmpord, FPU_CMPORD)
 
-const int comis_eflags[4] = {CC_C, CC_Z, 0, CC_Z | CC_P | CC_C};
+static const int comis_eflags[4] = {CC_C, CC_Z, 0, CC_Z | CC_P | CC_C};
 
 void helper_ucomiss(Reg *d, Reg *s)
 {




reply via email to

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