From 559b207372309bde64ae8c9e46fa37fbb1a469c0 Mon Sep 17 00:00:00 2001 From: Julian Seward Date: Mon, 22 May 2017 08:41:07 +0000 Subject: [PATCH] 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 --- coregrind/m_libcprint.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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); -- 2.47.2