diff options
author | Clément Bœsch <cboesch@gopro.com> | 2017-03-30 10:26:29 +0200 |
---|---|---|
committer | Clément Bœsch <cboesch@gopro.com> | 2017-03-30 10:26:29 +0200 |
commit | 03f5e80bdbbfa3229b6af3ad7bc94cc1468cc1b6 (patch) | |
tree | 22ff97ac03e7a5140ed6050060e50a8fa508c897 /libavutil | |
parent | f291a9a1adab8ba41e06073b8a9e51f528be6532 (diff) | |
parent | 67351924fa91dea4339109100a4c0689f006581f (diff) | |
download | ffmpeg-03f5e80bdbbfa3229b6af3ad7bc94cc1468cc1b6.tar.gz |
Merge commit '67351924fa91dea4339109100a4c0689f006581f'
* commit '67351924fa91dea4339109100a4c0689f006581f':
Drop unreachable break and return statements
Merged-by: Clément Bœsch <cboesch@gopro.com>
Diffstat (limited to 'libavutil')
-rw-r--r-- | libavutil/opt.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/libavutil/opt.c b/libavutil/opt.c index 6ae2af65b8..6f87078926 100644 --- a/libavutil/opt.c +++ b/libavutil/opt.c @@ -311,8 +311,6 @@ static int set_string_number(void *obj, void *target_obj, const AVOption *o, con if (!i || !*val) return 0; } - - return 0; } static int set_string_image_size(void *obj, const AVOption *o, const char *val, int *dst) |