summaryrefslogtreecommitdiff
path: root/libavfilter/vf_drawtext.c
diff options
context:
space:
mode:
authorDiego Biurrun <diego@biurrun.de>2011-12-29 22:23:16 +0100
committerDiego Biurrun <diego@biurrun.de>2011-12-30 22:18:07 +0100
commitd4b63054d9d0bd4b288a5f8e6b34c9d0e5da8188 (patch)
tree36f5aff04d79a9b5825f0d17b15b3f6671ab4ab7 /libavfilter/vf_drawtext.c
parentf486fb338e36e674c2b72fc7c859967538cf1b47 (diff)
cosmetics: Drop unnecessary parentheses around return values.
Diffstat (limited to 'libavfilter/vf_drawtext.c')
-rw-r--r--libavfilter/vf_drawtext.c2
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)