]> git.ipfire.org Git - thirdparty/valgrind.git/commitdiff
Fix order of strings in a warning message, that has always been wrong.
authorJulian Seward <jseward@acm.org>
Mon, 22 May 2017 08:41:07 +0000 (08:41 +0000)
committerJulian Seward <jseward@acm.org>
Mon, 22 May 2017 08:41:07 +0000 (08:41 +0000)
n-i-bz.

git-svn-id: svn://svn.valgrind.org/valgrind/trunk@16405

coregrind/m_libcprint.c

index 9231fcb7636f3aa5ffe93904f239b32a2f1ca5e6..d66c67dc6488dedec920053a7c5a2b1066300f97 100644 (file)
@@ -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);