]> git.pld-linux.org Git - packages/gtkpod.git/blob - format-security-error.patch
- fix format-security error
[packages/gtkpod.git] / format-security-error.patch
1 --- a/plugins/clarity/clarity_cover.c
2 +++ b/plugins/clarity/clarity_cover.c
3 @@ -241,7 +241,7 @@ void clarity_cover_set_album_item (ClarityCover *self, AlbumItem *item) {
4      // Set cover artwork
5      gtk_clutter_texture_set_from_pixbuf (GTK_CLUTTER_TEXTURE(priv->texture), item->albumart, &error);
6      if (error) {
7 -        g_warning(error->message);
8 +        g_warning("%s", error->message);
9          g_error_free(error);
10          return;
11      }
This page took 0.028122 seconds and 4 git commands to generate.