diff options
author | Ronald S. Bultje <rbultje@ronald.bitfreak.net> | 2002-09-17 17:45:19 +0000 |
---|---|---|
committer | Ronald S. Bultje <rbultje@ronald.bitfreak.net> | 2002-09-17 17:45:19 +0000 |
commit | 1e4feac240bbeefddb6a829adca14660ddd9c861 (patch) | |
tree | d7da1c247a31cd904d9fb6cba87408cd0ab35e1b /sys/v4l2 | |
parent | a1055ebd6e3562daf51c5e2edfa4fdf765c2d358 (diff) |
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
Diffstat (limited to 'sys/v4l2')
-rw-r--r-- | sys/v4l2/v4l2-overlay_calls.c | 2 | ||||
-rw-r--r-- | sys/v4l2/v4l2_calls.c | 2 | ||||
-rw-r--r-- | sys/v4l2/v4l2src_calls.c | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/sys/v4l2/v4l2-overlay_calls.c b/sys/v4l2/v4l2-overlay_calls.c index 89cae62b..c8ee053c 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 c24d0e4d..c29951fb 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 5dcff336..a992e889 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 |