[brasero] Fix #600293 - Fails to build error: cannot convert to a pointer type



commit cb1d9f596d6b9c6fd0131259436b834dc02c60fd
Author: Philippe Rouquier <bonfire-app wanadoo fr>
Date:   Tue Nov 3 14:47:42 2009 +0100

    Fix #600293 -  Fails to build error: cannot convert to a pointer type
    Patch by Carlos Garcia Campos <carlosgc gnome org>

 src/brasero-player-bacon.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)
---
diff --git a/src/brasero-player-bacon.c b/src/brasero-player-bacon.c
index f38903b..71c82e2 100644
--- a/src/brasero-player-bacon.c
+++ b/src/brasero-player-bacon.c
@@ -371,7 +371,7 @@ brasero_player_bacon_destroy (GtkObject *obj)
 			      NULL);
 		brasero_setting_set_value (brasero_setting_get_default (),
 		                           BRASERO_SETTING_PLAYER_VOLUME,
-		                           GINT_TO_POINTER (volume * 100));
+		                           GINT_TO_POINTER ((gint)(volume * 100)));
 	}
 
 	if (cobj->priv->xoverlay



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]