From: Thomas Vander Stichele Date: Wed, 15 Jan 2003 21:42:30 +0000 (+0000) Subject: small fixes X-Git-Tag: BRANCH-RELEASE-0_5_2-ROOT~36 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=6550acf9c81aa0bb3f95bb6963cd7b41e6ce792f;p=platform%2Fupstream%2Fgstreamer.git small fixes Original commit message from CVS: small fixes --- diff --git a/gst/gstinfo.h b/gst/gstinfo.h index 49b62a4..f3bd88c 100644 --- a/gst/gstinfo.h +++ b/gst/gstinfo.h @@ -207,11 +207,11 @@ G_GNUC_UNUSED static gchar *_debug_string = NULL; #ifdef G_HAVE_ISO_VARARGS #ifdef GST_DEBUG_COLOR - #define GST_DEBUG_ENTER(...) GST_DEBUG( 31 , "\033[00;37mentering\033[00m :" __VA_ARGS__ ) - #define GST_DEBUG_LEAVE(...) GST_DEBUG( 31 , "\033[00;37mleaving\033[00m :" __VA_ARGS__ ) + #define GST_DEBUG_ENTER(...) GST_DEBUG( 31 , "\033[00;37mentering\033[00m: " __VA_ARGS__ ) + #define GST_DEBUG_LEAVE(...) GST_DEBUG( 31 , "\033[00;37mleaving\033[00m: " __VA_ARGS__ ) #else - #define GST_DEBUG_ENTER(...) GST_DEBUG( 31 , "entering :" __VA_ARGS__ ) - #define GST_DEBUG_LEAVE(...) GST_DEBUG( 31 , "leaving :" __VA_ARGS__ ) + #define GST_DEBUG_ENTER(...) GST_DEBUG( 31 , "entering: " __VA_ARGS__ ) + #define GST_DEBUG_LEAVE(...) GST_DEBUG( 31 , "leaving: " __VA_ARGS__ ) #endif #elif defined(G_HAVE_GNUC_VARARGS)