From fd242b468d666a89a06af3bd2bd38144ce5df8dd Mon Sep 17 00:00:00 2001 From: Stefano Sabatini Date: Wed, 4 Feb 2015 13:01:25 +0100 Subject: [PATCH] lavf/utils: fix if_( style --- libavformat/utils.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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);