From a77518eb28a4d9975e8ea718432fc118df8f5472 Mon Sep 17 00:00:00 2001 From: Marc Durdin Date: Wed, 17 Dec 2025 05:41:20 +1100 Subject: [PATCH] chore(windows): fix typo in error message Build-bot: skip Test-bot: skip --- windows/src/engine/keyman/UfrmKeyman7Main.pas | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/windows/src/engine/keyman/UfrmKeyman7Main.pas b/windows/src/engine/keyman/UfrmKeyman7Main.pas index 0de538d5f6..16806bb7ad 100644 --- a/windows/src/engine/keyman/UfrmKeyman7Main.pas +++ b/windows/src/engine/keyman/UfrmKeyman7Main.pas @@ -856,8 +856,8 @@ begin KMC_WATCHDOG_HOOK_REINSTALL: case wParam of - WHR_TIMING: TKeymanSentryClient.ReportMessage('Watchdog: low level hook reinstalled, threshold exceedeed at '+IntToStr(lParam)+' msec'); - WHR_INIT_FAILURE: TKeymanSentryClient.ReportMessage('Watchdog: low level hook install failed with error '+IntToStr(lParam)); + WHR_TIMING: TKeymanSentryClient.ReportMessage('Watchdog: low level hook reinstalled, threshold exceeded at '+IntToStr(lParam)+' msec'); + WHR_INIT_FAILURE: TKeymanSentryClient.ReportMessage('Watchdog: low level hook install failed with error '+IntToStr(lParam)); WHR_UNINIT_FAILURE: TKeymanSentryClient.ReportMessage('Watchdog: low level hook uninstall failed with error '+IntToStr(lParam)); end;