Mercurial > audlegacy
changeset 2747:8b7e1929aec1 trunk
[svn] - change the appearance that backtraces are presented as
author | nenolod |
---|---|
date | Fri, 11 May 2007 19:31:36 -0700 |
parents | 2f5b461118a8 |
children | 4f2fd69771dc |
files | ChangeLog src/audacious/build_stamp.c src/audtool/audtool.c |
diffstat | 3 files changed, 12 insertions(+), 4 deletions(-) [+] |
line wrap: on
line diff
--- 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 <nenolod@sacredspiral.co.uk> + 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 <james@develia.org> revision [4516] - auddrct: more calls implemented (part 4)
--- 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 <glib.h> -const gchar *svn_stamp = "20070512-4516"; +const gchar *svn_stamp = "20070512-4518";
--- 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; }