|
From: <sv...@va...> - 2017-05-22 08:41:14
|
Author: sewardj
Date: Mon May 22 09:41:07 2017
New Revision: 16405
Log:
Fix order of strings in a warning message, that has always been wrong.
n-i-bz.
Modified:
trunk/coregrind/m_libcprint.c
Modified: trunk/coregrind/m_libcprint.c
==============================================================================
--- trunk/coregrind/m_libcprint.c (original)
+++ trunk/coregrind/m_libcprint.c Mon May 22 09:41:07 2017
@@ -378,8 +378,8 @@
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);
|