From d4b63054d9d0bd4b288a5f8e6b34c9d0e5da8188 Mon Sep 17 00:00:00 2001 From: Diego Biurrun Date: Thu, 29 Dec 2011 22:23:16 +0100 Subject: cosmetics: Drop unnecessary parentheses around return values. --- avplay.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'avplay.c') 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 */ -- cgit v1.2.3