diff options
author | Stefano Sabatini <stefasab@gmail.com> | 2015-02-04 13:01:25 +0100 |
---|---|---|
committer | Stefano Sabatini <stefasab@gmail.com> | 2015-02-04 13:17:30 +0100 |
commit | fd242b468d666a89a06af3bd2bd38144ce5df8dd (patch) | |
tree | beecf7eeee1c40b4bd7539e88a05693be0cef4e0 | |
parent | d2330e5844113e6317fe34c2f89fb2870417ccea (diff) | |
download | ffmpeg-fd242b468d666a89a06af3bd2bd38144ce5df8dd.tar.gz |
lavf/utils: fix if_( style
-rw-r--r-- | libavformat/utils.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/utils.c b/libavformat/utils.c index e44b45cefb..bbee059f4a 100644 --- a/libavformat/utils.c +++ b/libavformat/utils.c @@ -3827,7 +3827,7 @@ int av_get_frame_filename(char *buf, int buf_size, const char *path, int number) if (percentd_found) goto fail; percentd_found = 1; - if(number < 0) + if (number < 0) nd += 1; snprintf(buf1, sizeof(buf1), "%0*d", nd, number); len = strlen(buf1); |