summaryrefslogtreecommitdiff
path: root/avplay.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 /avplay.c
parentf486fb338e36e674c2b72fc7c859967538cf1b47 (diff)
cosmetics: Drop unnecessary parentheses around return values.
Diffstat (limited to 'avplay.c')
-rw-r--r--avplay.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/avplay.c b/avplay.c
index c21701081d..6a79e87730 100644
--- a/avplay.c
+++ b/avplay.c
@@ -2343,7 +2343,7 @@ static VideoState *global_video_state;
static int decode_interrupt_cb(void *ctx)
{
- return (global_video_state && global_video_state->abort_request);
+ return global_video_state && global_video_state->abort_request;
}
/* this thread gets the stream from the disk or the network */