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

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


Updating branch refs/heads/master
         to 946152fa3e3ccc929ca31776cd0bc2d268921abc (commit)
       from 607b52f830a20b093d5eef3a19c3d1a66bbc6698 (commit)

commit 946152fa3e3ccc929ca31776cd0bc2d268921abc
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 2a51a35..6676675 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,
@@ -2169,7 +2169,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