From 9fb75d2c9a969c6572af7bd27aa0cfda25b04020 Mon Sep 17 00:00:00 2001 From: Ervin Hegedus Date: Mon, 28 Jul 2025 10:38:01 +0200 Subject: [PATCH] Reformat code block with brackets Co-authored-by: Max Leske <250711+theseion@users.noreply.github.com> --- headers/modsecurity/rules_set_properties.h | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/headers/modsecurity/rules_set_properties.h b/headers/modsecurity/rules_set_properties.h index 3c623842..e16db046 100644 --- a/headers/modsecurity/rules_set_properties.h +++ b/headers/modsecurity/rules_set_properties.h @@ -166,7 +166,9 @@ protected: private: static inline void set_error(std::string* err, const char* msg) { - if (err) *err = msg; + if (err) { + *err = msg; + } } };