Skip to content

Commit 84396e0

Browse files
committed
Fix linting
1 parent 4a36047 commit 84396e0

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

src/main.cpp

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -188,7 +188,10 @@ Napi::Value DDWAF::update_config(const Napi::CallbackInfo& info) {
188188
ddwaf_object diagnostics;
189189

190190
mlog("Applying new config to builder");
191-
bool update_result = ddwaf_builder_add_or_update_config(this->_builder, LSTRARG(config_path.c_str()), &update, &diagnostics);
191+
bool update_result = ddwaf_builder_add_or_update_config(
192+
this->_builder,
193+
LSTRARG(config_path.c_str()),
194+
&update, &diagnostics);
192195

193196
Napi::Value diagnostics_js = from_ddwaf_object(&diagnostics, env);
194197
info.This().As<Napi::Object>().Set("diagnostics", diagnostics_js);

0 commit comments

Comments
 (0)