Browse Source

lavf/utils: fix if_( style

tags/n2.6
Stefano Sabatini 10 years ago
parent
commit
fd242b468d
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      libavformat/utils.c

+ 1
- 1
libavformat/utils.c View File

@@ -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);


Loading…
Cancel
Save