summaryrefslogtreecommitdiffstats
path: root/ext/flac
diff options
context:
space:
mode:
authorAndy Wingo <wingo@pobox.com>2002-03-24 22:07:03 +0000
committerAndy Wingo <wingo@pobox.com>2002-03-24 22:07:03 +0000
commit29aa39e99c71e2c7ae98883e72620e590e6ec965 (patch)
treeb553181db23bf46ba9e27382b6fcf9c731cfa934 /ext/flac
parent9e745b472d465325f1e8fd05a5d6465cb120d004 (diff)
filter newlines out of GST_DEBUG statements to reflect new core behavior fixes to adder's caps, again
Original commit message from CVS: * filter newlines out of GST_DEBUG statements to reflect new core behavior * fixes to adder's caps, again
Diffstat (limited to 'ext/flac')
-rw-r--r--ext/flac/gstflacenc.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/ext/flac/gstflacenc.c b/ext/flac/gstflacenc.c
index 60390e11..a1f06b28 100644
--- a/ext/flac/gstflacenc.c
+++ b/ext/flac/gstflacenc.c
@@ -231,7 +231,7 @@ gst_flacenc_set_property(GObject *object, guint prop_id, const GValue *value, GP
this = (FlacEnc *)object;
switch (prop_id) {
default:
- GST_DEBUG(0, "Unknown arg %d\n", prop_id);
+ GST_DEBUG(0, "Unknown arg %d", prop_id);
return;
}
}
@@ -245,7 +245,7 @@ gst_flacenc_get_property(GObject *object, guint prop_id, GValue *value, GParamSp
switch (prop_id) {
default:
- GST_DEBUG(0, "Unknown arg %d\n", prop_id);
+ GST_DEBUG(0, "Unknown arg %d", prop_id);
break;
}
}