commit 442f7ad87d59fba01c2e517a75032dfb69ccbd4b from: Sergey Bronnikov date: Wed Jul 10 15:18:15 2024 UTC luzer: add missed newlines to messages commit - 56a8fd4062e5dfad2402c59acf210cb64eec4991 commit + 442f7ad87d59fba01c2e517a75032dfb69ccbd4b blob - 10ff09c348f161a16e7f4dff1c97729455c93ce8 blob + 39e35003aeb751ee86d026778836562e89c82661 --- CHANGELOG.md +++ CHANGELOG.md @@ -18,6 +18,7 @@ and this project adheres to [Semantic Versioning](http ### Changed - Disable coverage instrumentation of internal functions (#11). +- Add missed newlines to messages. ### Fixed blob - e6e94d31bcaebaba807e0c035fce43bda1a0d3e3 blob + 4943749b01ea81ef9a32314750447497e724f0a8 --- luzer/luzer.c +++ luzer/luzer.c @@ -151,7 +151,7 @@ init(void) { if (!&LLVMFuzzerRunDriver) { printf("LLVMFuzzerRunDriver symbol not found. This means " - "you had an old version of Clang installed when you built luzer."); + "you had an old version of Clang installed when you built luzer.\n"); /* TODO: exit */ assert(NULL); } @@ -161,7 +161,7 @@ init(void) "WARNING: Coverage symbols are being provided by a library other than " "libFuzzer. This will result in a broken Lua code coverage and " "severely impacted native extension code coverage. Symbols are coming " - "from this library: %s", get_coverage_symbols_location()); + "from this library: %s\n", get_coverage_symbols_location()); } }