# HG changeset patch # User nenolod # Date 1178937096 25200 # Node ID 8b7e1929aec1ae6bd35b89cce22b479948a16a83 # Parent 2f5b461118a88885bb86b882d436e5842ad51dcb [svn] - change the appearance that backtraces are presented as diff -r 2f5b461118a8 -r 8b7e1929aec1 ChangeLog --- a/ChangeLog Fri May 11 19:31:07 2007 -0700 +++ b/ChangeLog Fri May 11 19:31:36 2007 -0700 @@ -1,3 +1,11 @@ +2007-05-12 02:31:07 +0000 William Pitcock + revision [4518] + - adjust build order for libaudclient and audacious. reported by Crazy_Hopper. + + trunk/src/Makefile | 2 +- + 1 file changed, 1 insertion(+), 1 deletion(-) + + 2007-05-12 01:35:26 +0000 Giacomo Lozito revision [4516] - auddrct: more calls implemented (part 4) diff -r 2f5b461118a8 -r 8b7e1929aec1 src/audacious/build_stamp.c --- a/src/audacious/build_stamp.c Fri May 11 19:31:07 2007 -0700 +++ b/src/audacious/build_stamp.c Fri May 11 19:31:36 2007 -0700 @@ -1,2 +1,2 @@ #include -const gchar *svn_stamp = "20070512-4516"; +const gchar *svn_stamp = "20070512-4518"; diff -r 2f5b461118a8 -r 8b7e1929aec1 src/audtool/audtool.c --- a/src/audtool/audtool.c Fri May 11 19:31:07 2007 -0700 +++ b/src/audtool/audtool.c Fri May 11 19:31:36 2007 -0700 @@ -121,7 +121,7 @@ connection = dbus_g_bus_get(DBUS_BUS_SESSION, &error); if (connection == NULL) - mowgli_error_context_display_with_error(e, "\n * ", g_strdup_printf("D-Bus Error: %s", error->message)); + mowgli_error_context_display_with_error(e, ":\n * ", g_strdup_printf("D-Bus Error: %s", error->message)); mowgli_error_context_pop(e); @@ -146,7 +146,7 @@ mowgli_error_context_push(e, "While processing the commandline"); if (argc < 2) - mowgli_error_context_display_with_error(e, "\n * ", "not enough parameters, use audtool --help for more information."); + mowgli_error_context_display_with_error(e, ":\n * ", "not enough parameters, use audtool --help for more information."); for (i = 0; handlers[i].name != NULL; i++) { @@ -159,7 +159,7 @@ } } - mowgli_error_context_display_with_error(e, "\n * ", g_strdup_printf("Unknown command `%s' encountered, use audtool --help for a command list.", argv[1])); + mowgli_error_context_display_with_error(e, ":\n * ", g_strdup_printf("Unknown command `%s' encountered, use audtool --help for a command list.", argv[1])); return 0; }