Commit e1f89583 authored by James Zern's avatar James Zern

libvpxenc,cosmetics: fix { placement

Signed-off-by: 's avatarJames Zern <jzern@google.com>
parent 95107af3
......@@ -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);
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment