mirror of
https://github.com/reactos/reactos.git
synced 2025-04-18 11:36:46 +00:00
[USER32] Fix UpdatePerUserImmEnabling tracing bug
CORE-11700
This commit is contained in:
parent
a65014e3a0
commit
67d8ffb60b
1 changed files with 2 additions and 2 deletions
|
@ -1105,9 +1105,9 @@ BOOL WINAPI UpdatePerUserImmEnabling(VOID)
|
||||||
return TRUE;
|
return TRUE;
|
||||||
|
|
||||||
imm32 = LoadLibraryW(L"imm32.dll");
|
imm32 = LoadLibraryW(L"imm32.dll");
|
||||||
if (imm32)
|
if (imm32 == NULL)
|
||||||
{
|
{
|
||||||
ERR("UPUIE: Imm32 not installed!\n");
|
ERR("Imm32 not installed!\n");
|
||||||
ret = FALSE;
|
ret = FALSE;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue