diff options
author | Diego Biurrun <diego@biurrun.de> | 2011-12-29 22:23:16 +0100 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2011-12-30 22:18:07 +0100 |
commit | d4b63054d9d0bd4b288a5f8e6b34c9d0e5da8188 (patch) | |
tree | 36f5aff04d79a9b5825f0d17b15b3f6671ab4ab7 /libavfilter | |
parent | f486fb338e36e674c2b72fc7c859967538cf1b47 (diff) | |
download | ffmpeg-d4b63054d9d0bd4b288a5f8e6b34c9d0e5da8188.tar.gz |
cosmetics: Drop unnecessary parentheses around return values.
Diffstat (limited to 'libavfilter')
-rw-r--r-- | libavfilter/vf_drawtext.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavfilter/vf_drawtext.c b/libavfilter/vf_drawtext.c index 060c3a4a0e..dcde542118 100644 --- a/libavfilter/vf_drawtext.c +++ b/libavfilter/vf_drawtext.c @@ -429,7 +429,7 @@ static av_cold void uninit(AVFilterContext *ctx) static inline int is_newline(uint32_t c) { - return (c == '\n' || c == '\r' || c == '\f' || c == '\v'); + return c == '\n' || c == '\r' || c == '\f' || c == '\v'; } static int dtext_prepare_text(AVFilterContext *ctx) |