mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-26 19:51:11 +00:00
removed some spare newlines
Original commit message from CVS: removed some spare newlines
This commit is contained in:
parent
487cb83ce6
commit
72c7d3527f
1 changed files with 6 additions and 6 deletions
|
@ -112,7 +112,7 @@ void
|
|||
gst_info_set_categories (guint32 categories) {
|
||||
_gst_info_categories = categories;
|
||||
if (categories)
|
||||
GST_INFO (0, "setting INFO categories to 0x%08X\n",categories);
|
||||
GST_INFO (0, "setting INFO categories to 0x%08X",categories);
|
||||
}
|
||||
|
||||
/**
|
||||
|
@ -136,7 +136,7 @@ void
|
|||
gst_info_enable_category (gint category) {
|
||||
_gst_info_categories |= (1 << category);
|
||||
if (_gst_info_categories)
|
||||
GST_INFO (0, "setting INFO categories to 0x%08X\n",_gst_info_categories);
|
||||
GST_INFO (0, "setting INFO categories to 0x%08X",_gst_info_categories);
|
||||
}
|
||||
|
||||
/**
|
||||
|
@ -149,7 +149,7 @@ void
|
|||
gst_info_disable_category (gint category) {
|
||||
_gst_info_categories &= ~ (1 << category);
|
||||
if (_gst_info_categories)
|
||||
GST_INFO (0, "setting INFO categories to 0x%08X\n",_gst_info_categories);
|
||||
GST_INFO (0, "setting INFO categories to 0x%08X",_gst_info_categories);
|
||||
}
|
||||
|
||||
|
||||
|
@ -169,7 +169,7 @@ void
|
|||
gst_debug_set_categories (guint32 categories) {
|
||||
_gst_debug_categories = categories;
|
||||
if (categories)
|
||||
GST_INFO (0, "setting DEBUG categories to 0x%08X\n",categories);
|
||||
GST_INFO (0, "setting DEBUG categories to 0x%08X",categories);
|
||||
}
|
||||
|
||||
/**
|
||||
|
@ -193,7 +193,7 @@ void
|
|||
gst_debug_enable_category (gint category) {
|
||||
_gst_debug_categories |= (1 << category);
|
||||
if (_gst_debug_categories)
|
||||
GST_INFO (0, "setting DEBUG categories to 0x%08X\n",_gst_debug_categories);
|
||||
GST_INFO (0, "setting DEBUG categories to 0x%08X",_gst_debug_categories);
|
||||
}
|
||||
|
||||
/**
|
||||
|
@ -206,7 +206,7 @@ void
|
|||
gst_debug_disable_category (gint category) {
|
||||
_gst_debug_categories &= ~ (1 << category);
|
||||
if (_gst_debug_categories)
|
||||
GST_INFO (0, "setting DEBUG categories to 0x%08X\n",_gst_debug_categories);
|
||||
GST_INFO (0, "setting DEBUG categories to 0x%08X",_gst_debug_categories);
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
Loading…
Reference in a new issue