summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authoraurel32 <aurel32@c046a42c-6fe2-441c-8c8c-71466251a162>2008-11-06 09:38:51 +0000
committeraurel32 <aurel32@c046a42c-6fe2-441c-8c8c-71466251a162>2008-11-06 09:38:51 +0000
commit978d5d73edeea8d5c725c43b7bd23fd897cac7fa (patch)
tree5432dc12247c1966f7cef733c4c2b6ebb3b69725
parent1304ca878a4e091c193bd4ae273e0b5cb6142237 (diff)
downloadqemu-978d5d73edeea8d5c725c43b7bd23fd897cac7fa.tar.gz
Win32: Fix warnings
Attached patch fixes some warnings which only happen on Windows. Signed-off-by: Hervé Poussineau <hpoussin@reactos.org> Signed-off-by: Aurelien Jarno <aurelien@aurel32.net> git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@5639 c046a42c-6fe2-441c-8c8c-71466251a162
-rw-r--r--bt-host.c2
-rw-r--r--exec.c1
-rw-r--r--tap-win32.c6
3 files changed, 4 insertions, 5 deletions
diff --git a/bt-host.c b/bt-host.c
index 042a55e47e..3c7b270dff 100644
--- a/bt-host.c
+++ b/bt-host.c
@@ -200,7 +200,7 @@ struct HCIInfo *bt_host_hci(const char *id)
#else
struct HCIInfo *bt_host_hci(const char *id)
{
- fprintf(stderr, "qemu: bluetooth passthrough not supported (yet)\n", errno);
+ fprintf(stderr, "qemu: bluetooth passthrough not supported (yet)\n");
return 0;
}
diff --git a/exec.c b/exec.c
index ef1072b6dd..1edc737da5 100644
--- a/exec.c
+++ b/exec.c
@@ -234,7 +234,6 @@ static void page_init(void)
#ifdef _WIN32
{
SYSTEM_INFO system_info;
- DWORD old_protect;
GetSystemInfo(&system_info);
qemu_real_host_page_size = system_info.dwPageSize;
diff --git a/tap-win32.c b/tap-win32.c
index bfec14578a..299b4b3225 100644
--- a/tap-win32.c
+++ b/tap-win32.c
@@ -77,7 +77,7 @@
// Compile time configuration
//======================
-//#define DEBUG_TAP_WIN32 1
+//#define DEBUG_TAP_WIN32
#define TUN_ASYNCHRONOUS_WRITES 1
@@ -509,7 +509,7 @@ static DWORD WINAPI tap_win32_thread_entry(LPVOID param)
result = GetOverlappedResult( overlapped->handle, &overlapped->read_overlapped,
&read_size, FALSE);
if (!result) {
-#if DEBUG_TAP_WIN32
+#ifdef DEBUG_TAP_WIN32
LPVOID lpBuffer;
dwError = GetLastError();
FormatMessage( FORMAT_MESSAGE_ALLOCATE_BUFFER | FORMAT_MESSAGE_FROM_SYSTEM,
@@ -520,7 +520,7 @@ static DWORD WINAPI tap_win32_thread_entry(LPVOID param)
#endif
}
} else {
-#if DEBUG_TAP_WIN32
+#ifdef DEBUG_TAP_WIN32
LPVOID lpBuffer;
FormatMessage( FORMAT_MESSAGE_ALLOCATE_BUFFER | FORMAT_MESSAGE_FROM_SYSTEM,
NULL, dwError, MAKELANGID(LANG_NEUTRAL, SUBLANG_DEFAULT),