This is an automated email from the ASF dual-hosted git repository.
swebb2066 pushed a commit to branch abi_16_fuzzers
in repository https://gitbox.apache.org/repos/asf/logging-log4cxx.git
The following commit(s) were added to refs/heads/abi_16_fuzzers by this push:
new dbea14f3 Fix compilation error
dbea14f3 is described below
commit dbea14f3ad748e919626081bf9d7216dee159a37
Author: Stephen Webb <[email protected]>
AuthorDate: Thu Sep 3 11:34:47 2026 +1000
Fix compilation error
---
src/fuzzers/cpp/HTMLLayoutFuzzer.cpp | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/fuzzers/cpp/HTMLLayoutFuzzer.cpp
b/src/fuzzers/cpp/HTMLLayoutFuzzer.cpp
index 7c12b972..4636c111 100644
--- a/src/fuzzers/cpp/HTMLLayoutFuzzer.cpp
+++ b/src/fuzzers/cpp/HTMLLayoutFuzzer.cpp
@@ -97,7 +97,7 @@ extern "C" int LLVMFuzzerTestOneInput(const uint8_t *data,
size_t size) {
// Call the target API
log4cxx::LogString result;
- layout.format(result, event, p);
+ layout.format(result, event);
// Clean up
log4cxx::NDC::clear();