]> git.pld-linux.org Git - packages/gtkpod.git/commitdiff
- fix format-security error
authorŁukasz Kieś <kiesiu@pld-linux.org>
Mon, 22 Oct 2012 18:38:43 +0000 (20:38 +0200)
committerŁukasz Kieś <kiesiu@pld-linux.org>
Mon, 22 Oct 2012 18:38:43 +0000 (20:38 +0200)
format-security-error.patch [new file with mode: 0644]

diff --git a/format-security-error.patch b/format-security-error.patch
new file mode 100644 (file)
index 0000000..d65137f
--- /dev/null
@@ -0,0 +1,11 @@
+--- a/plugins/clarity/clarity_cover.c
++++ b/plugins/clarity/clarity_cover.c
+@@ -241,7 +241,7 @@ void clarity_cover_set_album_item (ClarityCover *self, AlbumItem *item) {
+     // Set cover artwork
+     gtk_clutter_texture_set_from_pixbuf (GTK_CLUTTER_TEXTURE(priv->texture), item->albumart, &error);
+     if (error) {
+-        g_warning(error->message);
++        g_warning("%s", error->message);
+         g_error_free(error);
+         return;
+     }
This page took 0.133063 seconds and 4 git commands to generate.