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
This commit is contained in:
Ronald S. Bultje 2002-09-17 17:45:19 +00:00
parent 4e4f3462a6
commit a06baf38da
3 changed files with 3 additions and 3 deletions

View file

@ -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)
/******************************************************

View file

@ -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)
/******************************************************

View file

@ -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