Commit fd242b46 authored by Stefano Sabatini's avatar Stefano Sabatini

lavf/utils: fix if_( style

parent d2330e58
...@@ -3827,7 +3827,7 @@ int av_get_frame_filename(char *buf, int buf_size, const char *path, int number) ...@@ -3827,7 +3827,7 @@ int av_get_frame_filename(char *buf, int buf_size, const char *path, int number)
if (percentd_found) if (percentd_found)
goto fail; goto fail;
percentd_found = 1; percentd_found = 1;
if(number < 0) if (number < 0)
nd += 1; nd += 1;
snprintf(buf1, sizeof(buf1), "%0*d", nd, number); snprintf(buf1, sizeof(buf1), "%0*d", nd, number);
len = strlen(buf1); len = strlen(buf1);
......
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