summaryrefslogtreecommitdiff
path: root/ffprobe.c
diff options
context:
space:
mode:
authorStefano Sabatini <stefasab@gmail.com>2012-02-06 10:44:54 +0100
committerStefano Sabatini <stefasab@gmail.com>2012-02-06 11:30:45 +0100
commit1ca0812d909a05e341e4c76861fb9dccc2f47112 (patch)
treeb41cf7b41c61b6d3c3acf31a0443968bf0432e75 /ffprobe.c
parente81e0b9991c3f00f05c496fdbb53471b2803bbe8 (diff)
ffprobe: fix typo in ESCAPE_CHECK_SIZE
Diffstat (limited to 'ffprobe.c')
-rw-r--r--ffprobe.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ffprobe.c b/ffprobe.c
index 08ee8fd5d7..79f749470b 100644
--- a/ffprobe.c
+++ b/ffprobe.c
@@ -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"; \
}