From c70ca5fbff4e2f1e48505faba4b32c2904987167 Mon Sep 17 00:00:00 2001 From: crs Date: Mon, 2 Jun 2003 20:06:20 +0000 Subject: [PATCH] Fixed errors in log strings. --- lib/client/CServerProxy.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/client/CServerProxy.cpp b/lib/client/CServerProxy.cpp index 3421bd60..d174e4cd 100644 --- a/lib/client/CServerProxy.cpp +++ b/lib/client/CServerProxy.cpp @@ -538,7 +538,7 @@ CServerProxy::keyRepeat() static_cast(mask)); if (id2 != static_cast(id) || mask2 != static_cast(mask)) - LOG((CLOG_DEBUG1 "key down translated to id=%d, mask=0x%04x", id2, mask2)); + LOG((CLOG_DEBUG1 "key repeat translated to id=%d, mask=0x%04x", id2, mask2)); // forward getClient()->keyRepeat(id2, mask2, count, button); @@ -561,7 +561,7 @@ CServerProxy::keyUp() static_cast(mask)); if (id2 != static_cast(id) || mask2 != static_cast(mask)) - LOG((CLOG_DEBUG1 "key down translated to id=%d, mask=0x%04x", id2, mask2)); + LOG((CLOG_DEBUG1 "key up translated to id=%d, mask=0x%04x", id2, mask2)); // forward getClient()->keyUp(id2, mask2, button);