[Xfce4-commits] <parole:0.2.2> Fix compilation on 64 bit machine.

Ali Abdallah noreply at xfce.org
Sun Jan 31 19:28:04 CET 2010


Updating branch refs/heads/0.2.2
         to 4521a54c722d159177736348c26461b9355dbb9d (commit)
       from 88d822a1ea271394849b81dc0311d4b5e84272c0 (commit)

commit 4521a54c722d159177736348c26461b9355dbb9d
Author: Ali Abdallah <aliov at xfce.org>
Date:   Sun Jan 31 19:23:25 2010 +0100

    Fix compilation on 64 bit machine.

 gst/parole-gst.c |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/gst/parole-gst.c b/gst/parole-gst.c
index 2f982e7..ad0f099 100644
--- a/gst/parole-gst.c
+++ b/gst/parole-gst.c
@@ -655,7 +655,7 @@ parole_gst_query_duration (ParoleGst *gst)
 	duration =  absolute_duration / GST_SECOND;
 	live = ( absolute_duration == 0 );
 	
-	TRACE ("Duration %lld is_live=%d", duration, live);
+	TRACE ("Duration %" G_GINT64_FORMAT "is_live=%d", duration, live);
 	
 	g_object_set (G_OBJECT (gst->priv->stream),
 		      "absolute-duration", absolute_duration,
@@ -2180,7 +2180,7 @@ gint parole_gst_get_current_cdda_track (ParoleGst *gst)
     
     if ( gst_element_query_position (gst->priv->playbin, &format, &pos) )
     {
-	TRACE ("Pos %lld", pos);
+	TRACE ("Pos %" G_GINT64_FORMAT, pos);
 	ret_val = (gint) pos;
     }
 	



More information about the Xfce4-commits mailing list