diff audacious/playlist_list.c @ 625:0a73d1faeb4e trunk

[svn] GCC 4.1 warning fixes by Diego 'Flameeyes' Petteno from Gentoo.
author chainsaw
date Mon, 06 Feb 2006 17:10:47 -0800
parents d056380ea0b3
children d539e5c5f730
line wrap: on
line diff
--- a/audacious/playlist_list.c	Mon Feb 06 16:52:28 2006 -0800
+++ b/audacious/playlist_list.c	Mon Feb 06 17:10:47 2006 -0800
@@ -641,7 +641,8 @@
      */
 
     if (pl->pl_drag_motion) {
-        guint pos, x, y, plx, ply, plength, lpadding;
+        guint pos, plength, lpadding;
+	gint x, y, plx, ply;
 
         if (cfg.show_numbers_in_pl) {
             lpadding = gint_count_digits(playlist_get_length_nolock()) + 1;