From: Julian Seward Date: Mon, 22 May 2017 08:41:07 +0000 (+0000) Subject: Fix order of strings in a warning message, that has always been wrong. X-Git-Tag: svn/VALGRIND_3_13_0~29 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=559b207372309bde64ae8c9e46fa37fbb1a469c0;p=thirdparty%2Fvalgrind.git Fix order of strings in a warning message, that has always been wrong. n-i-bz. git-svn-id: svn://svn.valgrind.org/valgrind/trunk@16405 --- diff --git a/coregrind/m_libcprint.c b/coregrind/m_libcprint.c index 9231fcb763..d66c67dc64 100644 --- a/coregrind/m_libcprint.c +++ b/coregrind/m_libcprint.c @@ -378,8 +378,8 @@ static Int prepare_sink_socket(const HChar *clo_fname_unexpanded, VG_(umsg)("Failed to connect to %slogging server '%s'.\n" "%s will be sent to stderr instead.\n", (is_xml) ? "XML " : "", - (is_xml) ? "XML output" : "Logging messages", - clo_fname_unexpanded); + clo_fname_unexpanded, + (is_xml) ? "XML output" : "Logging messages"); /* We don't change anything here. */ vg_assert(sink->fd == 2); vg_assert(sink->type == VgLogTo_Fd);