summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJamey Sharp <jamey@minilop.net>2011-09-19 20:34:49 -0700
committerJamey Sharp <jamey@minilop.net>2011-09-19 20:34:49 -0700
commitee0f8d95c183584ed56ffeb8852715af2468cbe8 (patch)
treebc444cc564ffb9cedf3734fe6749d3171da99d38
parent2bf78c42ddd0cf0efc297b3455aec4420632b988 (diff)
Fix copy/paste error in log messages emitted during early (racey) input.
Signed-off-by: Jamey Sharp <jamey@minilop.net>
-rw-r--r--src/xlibclient.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/xlibclient.c b/src/xlibclient.c
index 1eff59d..6539889 100644
--- a/src/xlibclient.c
+++ b/src/xlibclient.c
@@ -298,7 +298,7 @@ NestedClientCheckEvents(NestedClientPrivatePtr pPriv) {
case MotionNotify:
if (!pPriv->dev) {
- xf86DrvMsg(pPriv->scrnIndex, X_INFO, "Input device is not yet initializedXShmQueryExtension failed. Dropping XShm support.\n");
+ xf86DrvMsg(pPriv->scrnIndex, X_INFO, "Input device is not yet initialized, ignoring input.\n");
break;
}
@@ -310,7 +310,7 @@ NestedClientCheckEvents(NestedClientPrivatePtr pPriv) {
case ButtonPress:
case ButtonRelease:
if (!pPriv->dev) {
- xf86DrvMsg(pPriv->scrnIndex, X_INFO, "Input device is not yet initializedXShmQueryExtension failed. Dropping XShm support.\n");
+ xf86DrvMsg(pPriv->scrnIndex, X_INFO, "Input device is not yet initialized, ignoring input.\n");
break;
}
@@ -320,7 +320,7 @@ NestedClientCheckEvents(NestedClientPrivatePtr pPriv) {
case KeyPress:
case KeyRelease:
if (!pPriv->dev) {
- xf86DrvMsg(pPriv->scrnIndex, X_INFO, "Input device is not yet initializedXShmQueryExtension failed. Dropping XShm support.\n");
+ xf86DrvMsg(pPriv->scrnIndex, X_INFO, "Input device is not yet initialized, ignoring input.\n");
break;
}