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/v4l2_calls.c | |
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/v4l2_calls.c')
-rw-r--r-- | sys/v4l2/v4l2_calls.c | 2 |
1 files changed, 1 insertions, 1 deletions
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) /****************************************************** |