|
From: <sv...@va...> - 2005-08-29 01:27:53
|
Author: njn
Date: 2005-08-29 02:27:50 +0100 (Mon, 29 Aug 2005)
New Revision: 4558
Log:
Add a newline to the failure message.
Modified:
branches/ASPACEM/coregrind/m_launcher.c
Modified: branches/ASPACEM/coregrind/m_launcher.c
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D
--- branches/ASPACEM/coregrind/m_launcher.c 2005-08-29 01:22:54 UTC (rev =
4557)
+++ branches/ASPACEM/coregrind/m_launcher.c 2005-08-29 01:27:50 UTC (rev =
4558)
@@ -103,7 +103,8 @@
=20
execve(toolfile, argv, envp);
=20
- fprintf(stderr, "valgrind: failed to start %s: %s", toolname, strerro=
r(errno));
+ fprintf(stderr, "valgrind: failed to start %s: %s\n",
+ toolname, strerror(errno));
=20
exit(1);
}
|