Skip to content

Commit

Permalink
- fix expat test
Browse files Browse the repository at this point in the history
the old test used no format arguments which caused a build failure if compiled with security options
  • Loading branch information
fbergmann authored Feb 14, 2025
1 parent afdfd99 commit 782ace5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion CMakeModules/FindEXPAT.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,7 @@ if (EXPAT_INCLUDE_DIR AND EXPAT_LIBRARY)
int
main(void)
{
printf(XML_ExpatVersion());
printf(\"%s\", XML_ExpatVersion());
return 0;
}
"
Expand Down

0 comments on commit 782ace5

Please sign in to comment.