summaryrefslogtreecommitdiffstats
path: root/client
diff options
context:
space:
mode:
authorChristophe Fergeau <cfergeau@redhat.com>2012-02-29 19:01:57 +0100
committerAlon Levy <alevy@redhat.com>2012-03-04 10:50:38 +0200
commit32cd24be0a3cf1e842a2fbc440401a6bb259874f (patch)
treeb8b786fd227e5669e881589eb74fd7de942919a5 /client
parent58b9aa98535586d024033b09a03fca6a1469334e (diff)
downloadspice-32cd24be0a3cf1e842a2fbc440401a6bb259874f.tar.gz
spice-32cd24be0a3cf1e842a2fbc440401a6bb259874f.tar.xz
spice-32cd24be0a3cf1e842a2fbc440401a6bb259874f.zip
mingw: fix signed/unsigned comparison warnings
Diffstat (limited to 'client')
-rw-r--r--client/red_client.h2
-rw-r--r--client/windows/event_sources_p.cpp2
-rw-r--r--client/windows/red_window.cpp2
3 files changed, 3 insertions, 3 deletions
diff --git a/client/red_client.h b/client/red_client.h
index 8872ce88..577ccb7a 100644
--- a/client/red_client.h
+++ b/client/red_client.h
@@ -375,7 +375,7 @@ private:
GlzDecoderWindowDebug _glz_debug;
GlzDecoderWindow _glz_window;
- int _glz_window_size; // in pixels
+ unsigned int _glz_window_size; // in pixels
Mutex _mm_clock_lock;
uint64_t _mm_clock_last_update;
diff --git a/client/windows/event_sources_p.cpp b/client/windows/event_sources_p.cpp
index 77035730..bbf48d9a 100644
--- a/client/windows/event_sources_p.cpp
+++ b/client/windows/event_sources_p.cpp
@@ -94,7 +94,7 @@ bool EventSources::wait_events(int timeout_ms)
size_t event_index = wait_res - WAIT_OBJECT_0;
if (event_index == _handles.size()) {
return process_system_events();
- } else if ((event_index >= 0) && (event_index < (int)_handles.size())) {
+ } else if ((event_index >= 0) && (event_index < _handles.size())) {
_events[event_index]->action();
return false;
} else {
diff --git a/client/windows/red_window.cpp b/client/windows/red_window.cpp
index 89a33c9a..fcb033bf 100644
--- a/client/windows/red_window.cpp
+++ b/client/windows/red_window.cpp
@@ -69,7 +69,7 @@ static bool is_fake_ctrl(UINT message, WPARAM wParam, LPARAM lParam)
LONG time = GetMessageTime();
BOOL msg_exist = PeekMessage(&next_msg, NULL,
next_peek, next_peek, PM_NOREMOVE);
- if ((msg_exist == TRUE) && (next_msg.time == time) &&
+ if ((msg_exist == TRUE) && ((LONG)next_msg.time == time) &&
(next_msg.wParam == VK_MENU) &&
(HIWORD (next_msg.lParam) & KF_EXTENDED)) {
return true;