1
mirror of https://git.videolan.org/git/ffmpeg.git synced 2024-09-30 16:42:13 +02:00

ffprobe: fix typo in ESCAPE_CHECK_SIZE

This commit is contained in:
Stefano Sabatini 2012-02-06 10:44:54 +01:00
parent e81e0b9991
commit 1ca0812d90

View File

@ -385,7 +385,7 @@ fail:
char buf[64]; \ char buf[64]; \
snprintf(buf, sizeof(buf), "%s", src); \ snprintf(buf, sizeof(buf), "%s", src); \
av_log(log_ctx, AV_LOG_WARNING, \ 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"; \ return "FFPROBE_TOO_BIG_STRING"; \
} }