diff options
author | James Zern <jzern@google.com> | 2018-11-19 11:36:36 -0800 |
---|---|---|
committer | James Zern <jzern@google.com> | 2018-11-19 11:38:34 -0800 |
commit | e1f895838d5061572a1d79da6e5888673a2ea241 (patch) | |
tree | 04cc7adb341af17ece295e4688c9242273a51b6c | |
parent | 95107af314620fc79d9efaa708f3d03bb27e884d (diff) | |
download | ffmpeg-e1f895838d5061572a1d79da6e5888673a2ea241.tar.gz |
libvpxenc,cosmetics: fix { placement
Signed-off-by: James Zern <jzern@google.com>
-rw-r--r-- | libavcodec/libvpxenc.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/libavcodec/libvpxenc.c b/libavcodec/libvpxenc.c index f1cfb7ee6b..39af586790 100644 --- a/libavcodec/libvpxenc.c +++ b/libavcodec/libvpxenc.c @@ -354,8 +354,7 @@ static void vp8_ts_parse_int_array(int *dest, char *value, size_t value_len, int char *saveptr = NULL; char *token = av_strtok(value, ",", &saveptr); - while (token && dest_idx < max_entries) - { + while (token && dest_idx < max_entries) { dest[dest_idx++] = strtoul(token, NULL, 10); token = av_strtok(NULL, ",", &saveptr); } |