From: Ronald S. Bultje Date: Tue, 17 Sep 2002 17:45:19 +0000 (+0000) Subject: This fixes the video4linux/video4linux2 debug output, which had one \n too much X-Git-Tag: 1.19.3~507^2~24696 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=a06baf38da437c0952874ac0a05ff29fc8528ff1;p=platform%2Fupstream%2Fgstreamer.git This fixes the video4linux/video4linux2 debug output, which had one \n too much Original commit message from CVS: This fixes the video4linux/video4linux2 debug output, which had one \n too much --- diff --git a/sys/v4l2/v4l2-overlay_calls.c b/sys/v4l2/v4l2-overlay_calls.c index 89cae62..c8ee053 100644 --- a/sys/v4l2/v4l2-overlay_calls.c +++ b/sys/v4l2/v4l2-overlay_calls.c @@ -33,7 +33,7 @@ #define DEBUG(format, args...) \ GST_DEBUG_ELEMENT(GST_CAT_PLUGIN_INFO, \ GST_ELEMENT(v4l2element), \ - "V4L2-overlay: " format "\n", ##args) + "V4L2-overlay: " format, ##args) /****************************************************** diff --git a/sys/v4l2/v4l2_calls.c b/sys/v4l2/v4l2_calls.c index c24d0e4..c29951f 100644 --- a/sys/v4l2/v4l2_calls.c +++ b/sys/v4l2/v4l2_calls.c @@ -33,7 +33,7 @@ #define DEBUG(format, args...) \ GST_DEBUG_ELEMENT(GST_CAT_PLUGIN_INFO, \ GST_ELEMENT(v4l2element), \ - "V4L2: " format "\n", ##args) + "V4L2: " format, ##args) /****************************************************** diff --git a/sys/v4l2/v4l2src_calls.c b/sys/v4l2/v4l2src_calls.c index 5dcff33..a992e88 100644 --- a/sys/v4l2/v4l2src_calls.c +++ b/sys/v4l2/v4l2src_calls.c @@ -31,7 +31,7 @@ #define DEBUG(format, args...) \ GST_DEBUG_ELEMENT(GST_CAT_PLUGIN_INFO, \ GST_ELEMENT(v4l2src), \ - "V4L2SRC: " format "\n", ##args) + "V4L2SRC: " format, ##args) #define MIN_BUFFERS_QUEUED 2