From 72c7d3527ff674132244a553f9f759814878a786 Mon Sep 17 00:00:00 2001 From: Erik Walthinsen Date: Thu, 11 Jan 2001 00:33:51 +0000 Subject: [PATCH] removed some spare newlines Original commit message from CVS: removed some spare newlines --- gst/gstinfo.c | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/gst/gstinfo.c b/gst/gstinfo.c index 89ba3f5ffc..44c5f38e2a 100644 --- a/gst/gstinfo.c +++ b/gst/gstinfo.c @@ -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); } /**