mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-15 22:01:27 +00:00
Added and extra whitespace before ## args (remember it eats all non whitespace chars to the left if it's empty).
Original commit message from CVS: Added and extra whitespace before ## args (remember it eats all non whitespace chars to the left if it's empty).
This commit is contained in:
parent
4777090985
commit
b3484a042a
1 changed files with 4 additions and 4 deletions
|
@ -160,11 +160,11 @@ G_GNUC_UNUSED static gchar *_debug_string = NULL;
|
|||
"''", GST_OBJECT_NAME (pad)
|
||||
|
||||
#ifdef GST_DEBUG_COLOR
|
||||
#define GST_DEBUG_ENTER(format, args...) GST_DEBUG( 31 , format ": \033[01;37mentering\033[00m\n", ## args )
|
||||
#define GST_DEBUG_LEAVE(format, args...) GST_DEBUG( 31 , format ": \033[01;37mleaving\033[00m\n", ## args )
|
||||
#define GST_DEBUG_ENTER(format, args...) GST_DEBUG( 31 , format ": \033[01;37mentering\033[00m\n" , ##args )
|
||||
#define GST_DEBUG_LEAVE(format, args...) GST_DEBUG( 31 , format ": \033[01;37mleaving\033[00m\n" , ##args )
|
||||
#else
|
||||
#define GST_DEBUG_ENTER(format, args...) GST_DEBUG( 31 , format ": entering\n", ## args )
|
||||
#define GST_DEBUG_LEAVE(format, args...) GST_DEBUG( 31 , format ": leaving\n", ## args )
|
||||
#define GST_DEBUG_ENTER(format, args...) GST_DEBUG( 31 , format ": entering\n" , ##args )
|
||||
#define GST_DEBUG_LEAVE(format, args...) GST_DEBUG( 31 , format ": leaving\n" , ##args )
|
||||
#endif
|
||||
|
||||
|
||||
|
|
Loading…
Reference in a new issue