diff options
author | Caolán McNamara <caolanm@redhat.com> | 2010-10-06 09:15:44 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2010-10-06 09:15:44 +0100 |
commit | 6013e36c39290230d118d9a277d83b4e58de8505 (patch) | |
tree | 619c75b1b88e5af3672a24b94558789fb4d04fff /xml2cmp | |
parent | bcdb4cc8666f55cd5998b42bab800bcb2e7d2f03 (diff) |
#i113938# printf style formats in c++ stream operation
Diffstat (limited to 'xml2cmp')
-rw-r--r-- | xml2cmp/source/xcd/main.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
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; } |