https://git.reactos.org/?p=reactos.git;a=commitdiff;h=081ffbeb4f02f000aa6ae…
commit 081ffbeb4f02f000aa6aedd9177bf81b62684716
Author: George Bișoc <george.bisoc(a)reactos.org>
AuthorDate: Sun May 8 21:49:14 2022 +0200
Commit: George Bișoc <george.bisoc(a)reactos.org>
CommitDate: Sun May 8 21:49:14 2022 +0200
[IMM32] Silence two debug prints
These two debug prints are spammy as fuck and it makes shit harder to debug ReactOS,
apart that these prints barely serve any purpose.
---
dll/win32/imm32/ctf.c | 2 +-
dll/win32/imm32/imm.c | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/dll/win32/imm32/ctf.c b/dll/win32/imm32/ctf.c
index b894c4498e3..153d4c5e5fa 100644
--- a/dll/win32/imm32/ctf.c
+++ b/dll/win32/imm32/ctf.c
@@ -41,7 +41,7 @@ HRESULT APIENTRY CtfImmTIMDestroyInputContext(HIMC hIMC)
// Win: CtfImmTIMCreateInputContext
HRESULT APIENTRY CtfImmTIMCreateInputContext(HIMC hIMC)
{
- FIXME("(%p)\n", hIMC);
+ TRACE("(%p)\n", hIMC);
return E_NOTIMPL;
}
diff --git a/dll/win32/imm32/imm.c b/dll/win32/imm32/imm.c
index e2e1e639689..c4cb95a1da1 100644
--- a/dll/win32/imm32/imm.c
+++ b/dll/win32/imm32/imm.c
@@ -491,7 +491,7 @@ BOOL WINAPI ImmActivateLayout(HKL hKL)
static VOID APIENTRY Imm32CiceroSetActiveContext(HIMC hIMC, BOOL fActive, HWND hWnd, HKL
hKL)
{
- FIXME("We have to do something\n");
+ TRACE("We have to do something\n");
}
/***********************************************************************