diff options
author | Stefano Sabatini <stefasab@gmail.com> | 2012-02-06 10:44:54 +0100 |
---|---|---|
committer | Stefano Sabatini <stefasab@gmail.com> | 2012-02-06 11:30:45 +0100 |
commit | 1ca0812d909a05e341e4c76861fb9dccc2f47112 (patch) | |
tree | b41cf7b41c61b6d3c3acf31a0443968bf0432e75 | |
parent | e81e0b9991c3f00f05c496fdbb53471b2803bbe8 (diff) | |
download | ffmpeg-1ca0812d909a05e341e4c76861fb9dccc2f47112.tar.gz |
ffprobe: fix typo in ESCAPE_CHECK_SIZE
-rw-r--r-- | ffprobe.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -385,7 +385,7 @@ fail: char buf[64]; \ snprintf(buf, sizeof(buf), "%s", src); \ av_log(log_ctx, AV_LOG_WARNING, \ - "String '%s...' with is too big\n", buf); \ + "String '%s...' is too big\n", buf); \ return "FFPROBE_TOO_BIG_STRING"; \ } |