From 5aec83b444eadc72cc8e7e38e2ae2ec8ab9c3dfe Mon Sep 17 00:00:00 2001 From: Val Lorentz Date: Sun, 6 Jul 2025 16:53:00 +0200 Subject: [PATCH] Fix mismatched closing parenthesis (#314) --- include/modules.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/modules.h b/include/modules.h index b2049dc95..a4363b774 100644 --- a/include/modules.h +++ b/include/modules.h @@ -2594,7 +2594,7 @@ _UNREAL_ERROR(_hook_error_incompatible, "Incompatible hook function. Check argum ((hooktype == HOOKTYPE_SASL_AUTHENTICATE) && !ValidateHook(hooktype_sasl_authenticate, func)) || \ ((hooktype == HOOKTYPE_SASL_MECHS) && !ValidateHook(hooktype_sasl_mechs, func)) || \ ((hooktype == HOOKTYPE_ALLOW_CLIENT) && !ValidateHook(hooktype_allow_client, func)) || \ - ((hooktype == HOOKTYPE_ANALYZE_TEXT) && !ValidateHook(hooktype_analyze_text, func))) || \ + ((hooktype == HOOKTYPE_ANALYZE_TEXT) && !ValidateHook(hooktype_analyze_text, func)) || \ ((hooktype == HOOKTYPE_CAN_USE_NICK) && !ValidateHook(hooktype_can_use_nick, func))) \ _hook_error_incompatible(); #endif /* GCC_TYPECHECKING */