From 6a311210e77aa285079463f72d9dfca726a70c11 Mon Sep 17 00:00:00 2001 From: kimkulling Date: Thu, 26 Apr 2018 17:01:22 +0200 Subject: [PATCH] fix another bug of misusage of the log macros. --- code/COBLoader.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/COBLoader.cpp b/code/COBLoader.cpp index 1d4ee2464..d6692f7d2 100644 --- a/code/COBLoader.cpp +++ b/code/COBLoader.cpp @@ -837,7 +837,7 @@ void COBImporter::ReadBitM_Ascii(Scene& /*out*/, LineSplitter& splitter, const C const unsigned int head = strtoul10((++splitter)[1]); if (head != sizeof(Bitmap::BitmapHeader)) { - ASSIMP_LOG_WARN_F("Unexpected ThumbNailHdrSize, skipping this chunk"); + ASSIMP_LOG_WARN("Unexpected ThumbNailHdrSize, skipping this chunk"); return; }