From cb3fb3539c5f3dec1c72e904978c285868a910e8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Caol=C3=A1n=20McNamara?= Date: Tue, 17 Aug 2010 12:38:01 +0100 Subject: [PATCH] cmcfixes78: #i113938# printf style formats in c++ stream operation --- xml2cmp/source/xcd/main.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/xml2cmp/source/xcd/main.cxx b/xml2cmp/source/xcd/main.cxx index a4c1c0638e82..d692149d2523 100644 --- a/xml2cmp/source/xcd/main.cxx +++ b/xml2cmp/source/xcd/main.cxx @@ -88,7 +88,7 @@ Do_SingleFileCommandLine(const CommandLine & i_rCommandLine) bool bLoadResult = aParser.LoadFile(i_rCommandLine.XmlSrcFile()); if (! bLoadResult) { - std::cerr << "Error: File %s could not be loaded." << i_rCommandLine.XmlSrcFile() << std::endl; + std::cerr << "Error: File " << i_rCommandLine.XmlSrcFile() << " could not be loaded." << std::endl; return 1; }