From bce90f172699c8094668fbedafcd11fc743588b5 Mon Sep 17 00:00:00 2001 From: Johannes Stoelp Date: Wed, 18 Oct 2023 18:47:10 +0200 Subject: log: fix -Wformat-security lint and remove lint excuse --- test/log.cc | 1 + 1 file changed, 1 insertion(+) (limited to 'test') diff --git a/test/log.cc b/test/log.cc index c059ba8..7d8305d 100644 --- a/test/log.cc +++ b/test/log.cc @@ -4,6 +4,7 @@ int main() { logging::logger<> mlog; mlog.set_level(logging::kDbg0); + INFO(&mlog, "Hallo nofmt"); INFO(&mlog, "Hallo %d", 42); WARN(&mlog, "Hallo %x", 0x1337); FAIL(&mlog, "Hallo %u", 666); -- cgit v1.2.3