From 30df52ca1e3e32b9a62a402158dd5bbb48c8d2dd Mon Sep 17 00:00:00 2001 From: Francois Gouget Date: Wed, 20 May 2009 16:03:58 +0200 Subject: [PATCH] msctf: Fix an error message. --- dlls/msctf/context.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dlls/msctf/context.c b/dlls/msctf/context.c index d312574decf..6f35defbf13 100644 --- a/dlls/msctf/context.c +++ b/dlls/msctf/context.c @@ -648,7 +648,7 @@ static HRESULT WINAPI TextStoreACPSink_OnLockGranted(ITextStoreACPSink *iface, if (!This->pContext || !This->pContext->currentEditSession) { - ERR("OnLockGranted called on a context without a current edit session\nZ"); + ERR("OnLockGranted called on a context without a current edit session\n"); return E_FAIL; }