From 3a9396d259ba1982e869db7be4d86fe1fd179373 Mon Sep 17 00:00:00 2001 From: Edward Hervey Date: Fri, 10 Apr 2009 08:51:02 +0200 Subject: [PATCH] gstinfo: remove useless ternary operator usage. --- gst/gstinfo.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/gst/gstinfo.c b/gst/gstinfo.c index e2756f0..312b9b8 100644 --- a/gst/gstinfo.c +++ b/gst/gstinfo.c @@ -298,7 +298,7 @@ _priv_gst_in_valgrind (void) g_assert (in_valgrind == GST_VG_NO_VALGRIND || in_valgrind == GST_VG_INSIDE); } - return (in_valgrind == GST_VG_INSIDE) ? TRUE : FALSE; + return (in_valgrind == GST_VG_INSIDE); } /** @@ -1166,7 +1166,7 @@ gst_debug_remove_log_function_by_data (gpointer data) void gst_debug_set_colored (gboolean colored) { - g_atomic_int_set (&__use_color, colored ? 1 : 0); + g_atomic_int_set (&__use_color, (gint) colored); } /** @@ -1179,7 +1179,7 @@ gst_debug_set_colored (gboolean colored) gboolean gst_debug_is_colored (void) { - return g_atomic_int_get (&__use_color) == 0 ? FALSE : TRUE; + return (gboolean) g_atomic_int_get (&__use_color); } /** -- 2.7.4