From 782ace566a924d66285911566f2f6428c0deb257 Mon Sep 17 00:00:00 2001 From: Frank Bergmann Date: Fri, 14 Feb 2025 08:51:37 +0100 Subject: [PATCH] - fix expat test the old test used no format arguments which caused a build failure if compiled with security options --- CMakeModules/FindEXPAT.cmake | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeModules/FindEXPAT.cmake b/CMakeModules/FindEXPAT.cmake index e3be96f28..2edf6a097 100644 --- a/CMakeModules/FindEXPAT.cmake +++ b/CMakeModules/FindEXPAT.cmake @@ -138,7 +138,7 @@ if (EXPAT_INCLUDE_DIR AND EXPAT_LIBRARY) int main(void) { - printf(XML_ExpatVersion()); + printf(\"%s\", XML_ExpatVersion()); return 0; } "