changeset 405:773885f3b723

int -> gint
author Matti Hamalainen <ccr@tnsp.org>
date Fri, 02 Jun 2006 12:31:04 +0000
parents c556999b4994
children d61581d203d6
files xmms-1.2.10-songpos.patch
diffstat 1 files changed, 3 insertions(+), 3 deletions(-) [+]
line wrap: on
line diff
--- a/xmms-1.2.10-songpos.patch	Fri Jun 02 12:30:04 2006 +0000
+++ b/xmms-1.2.10-songpos.patch	Fri Jun 02 12:31:04 2006 +0000
@@ -80,9 +80,9 @@
 +|*|      (If last <= first the feature is turned off)
 +\*/
 +
-+static int song_pos_cur, song_pos_first, song_pos_num = 0;
++static gint song_pos_cur, song_pos_first, song_pos_num = 0;
 +
-+void set_song_position(int pos, int first, int last)
++void set_song_position(gint pos, gint first, gint last)
 +{
 +	last -= first;
 +	song_pos_cur = pos;
@@ -260,6 +260,6 @@
  	void (*render_freq)(gint16 freq_data[2][256]); /* Render the freq data, don't do anything time consuming in here */
  } VisPlugin;
  
-+void set_song_position(int pos, int first, int last);
++void set_song_position(gint pos, gint first, gint last);
 +
  #endif