[FFmpeg-cvslog] lavf/utils: fix if_( style
Stefano Sabatini
git at videolan.org
Wed Feb 4 13:17:56 CET 2015
ffmpeg | branch: master | Stefano Sabatini <stefasab at gmail.com> | Wed Feb 4 13:01:25 2015 +0100| [fd242b468d666a89a06af3bd2bd38144ce5df8dd] | committer: Stefano Sabatini
lavf/utils: fix if_( style
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=fd242b468d666a89a06af3bd2bd38144ce5df8dd
---
libavformat/utils.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/libavformat/utils.c b/libavformat/utils.c
index e44b45c..bbee059 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);
More information about the ffmpeg-cvslog
mailing list