rhythmbox r5824 - in trunk: . backends/gstreamer rhythmdb
- From: teuf svn gnome org
- To: svn-commits-list gnome org
- Subject: rhythmbox r5824 - in trunk: . backends/gstreamer rhythmdb
- Date: Mon, 28 Jul 2008 23:11:32 +0000 (UTC)
Author: teuf
Date: Mon Jul 28 23:11:32 2008
New Revision: 5824
URL: http://svn.gnome.org/viewvc/rhythmbox?rev=5824&view=rev
Log:
* backends/gstreamer/rb-player-gst.c: (rb_player_gst_construct):
* rhythmdb/rhythmdb.c: (rhythmdb_load_error_cb): really fix format
strings warning, the previous commit was wrong
Modified:
trunk/ChangeLog
trunk/backends/gstreamer/rb-player-gst.c
trunk/rhythmdb/rhythmdb.c
Modified: trunk/backends/gstreamer/rb-player-gst.c
==============================================================================
--- trunk/backends/gstreamer/rb-player-gst.c (original)
+++ trunk/backends/gstreamer/rb-player-gst.c Mon Jul 28 23:11:32 2008
@@ -710,7 +710,7 @@
g_set_error (error,
RB_PLAYER_ERROR,
RB_PLAYER_ERROR_GENERAL,
- err);
+ "%s", err);
g_free (err);
rb_player_gst_gst_free_playbin (mp);
return FALSE;
Modified: trunk/rhythmdb/rhythmdb.c
==============================================================================
--- trunk/rhythmdb/rhythmdb.c (original)
+++ trunk/rhythmdb/rhythmdb.c Mon Jul 28 23:11:32 2008
@@ -2645,8 +2645,8 @@
{
GDK_THREADS_ENTER ();
rb_error_dialog (NULL,
- _("Could not load the music database: %s"),
- error->message);
+ _("Could not load the music database:"),
+ "%s", error->message);
g_error_free (error);
GDK_THREADS_LEAVE ();
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]