diff options
author | Michael Behrisch <oss@behrisch.de> | 2016-10-20 08:48:25 +0200 |
---|---|---|
committer | Clément Bœsch <u@pkh.me> | 2016-10-26 19:36:09 +0200 |
commit | c5ac86256bd9e74937d596a31cf6ab747c306d0a (patch) | |
tree | 2f633026007720d6bc7b5e05e7d48686ee2bd693 /libavutil/log.h | |
parent | 9445e7e6d562e14a6fbc3f73cd282136a239a611 (diff) | |
download | ffmpeg-c5ac86256bd9e74937d596a31cf6ab747c306d0a.tar.gz |
lavu: remove comma at final enumeration items to fix pedantic warnings
Diffstat (limited to 'libavutil/log.h')
-rw-r--r-- | libavutil/log.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavutil/log.h b/libavutil/log.h index 0acc1b9214..f0a57385df 100644 --- a/libavutil/log.h +++ b/libavutil/log.h @@ -44,7 +44,7 @@ typedef enum { AV_CLASS_CATEGORY_DEVICE_AUDIO_INPUT, AV_CLASS_CATEGORY_DEVICE_OUTPUT, AV_CLASS_CATEGORY_DEVICE_INPUT, - AV_CLASS_CATEGORY_NB, ///< not part of ABI/API + AV_CLASS_CATEGORY_NB ///< not part of ABI/API }AVClassCategory; #define AV_IS_INPUT_DEVICE(category) \ |