This fixes the video4linux/video4linux2 debug output, which had one \n too much
authorRonald S. Bultje <rbultje@ronald.bitfreak.net>
Tue, 17 Sep 2002 17:45:19 +0000 (17:45 +0000)
committerRonald S. Bultje <rbultje@ronald.bitfreak.net>
Tue, 17 Sep 2002 17:45:19 +0000 (17:45 +0000)
Original commit message from CVS:
This fixes the video4linux/video4linux2 debug output, which had one \n too much

sys/v4l2/v4l2-overlay_calls.c
sys/v4l2/v4l2_calls.c
sys/v4l2/v4l2src_calls.c

index 89cae62..c8ee053 100644 (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)
 
 
 /******************************************************
index c24d0e4..c29951f 100644 (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)
 
 
 /******************************************************
index 5dcff33..a992e88 100644 (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