From ca352b6c1f157165a95a85c63a745fc671b8d4a9 Mon Sep 17 00:00:00 2001 From: Sylvain Chapeland Date: Mon, 24 Oct 2022 17:03:37 +0200 Subject: [PATCH] clang --- src/SimpleLog.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/SimpleLog.cxx b/src/SimpleLog.cxx index 82b0590..95c8111 100644 --- a/src/SimpleLog.cxx +++ b/src/SimpleLog.cxx @@ -277,7 +277,7 @@ int SimpleLog::Impl::openLogFile() if (logFilePath.length() == 0) { return 0; } - const char *mode = "a"; + const char* mode = "a"; if (rotateMaxFiles == 1) { mode = "w"; }