summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorHans de Goede <hdegoede@redhat.com>2010-10-06 19:52:49 +0200
committerHans de Goede <hdegoede@redhat.com>2010-10-06 19:52:49 +0200
commitab8bac36bd0d5a399b76c9266ff1c752e28f7bd7 (patch)
tree723c05b9de08e19f6756ee86574084b1ce68b6a9
parent9b00e93efb197bb215390d9f96204a9f20ffb262 (diff)
downloadspice-ab8bac36bd0d5a399b76c9266ff1c752e28f7bd7.tar.gz
spice-ab8bac36bd0d5a399b76c9266ff1c752e28f7bd7.tar.xz
spice-ab8bac36bd0d5a399b76c9266ff1c752e28f7bd7.zip
spicec-x11: Drop annoying useless warning
Every time an events comes past where the Window is None (which happens about once every 5 minutes or so), this annoying "invalid window" message gets printed. Remove it!
-rw-r--r--client/x11/platform.cpp1
1 files changed, 0 insertions, 1 deletions
diff --git a/client/x11/platform.cpp b/client/x11/platform.cpp
index cb2431fb..ccae8777 100644
--- a/client/x11/platform.cpp
+++ b/client/x11/platform.cpp
@@ -271,7 +271,6 @@ void XEventHandler::on_event()
XNextEvent(&_x_display, &event);
if (event.xany.window == None) {
- LOG_WARN("invalid window");
continue;
}