ffprobe: fix C escaping.

This commit is contained in:
Clément Bœsch 2012-05-29 23:16:03 +02:00
parent 2d52ee8a1a
commit 8619362ff1
1 changed files with 1 additions and 1 deletions

View File

@ -508,7 +508,7 @@ static const char *c_escape_str(AVBPrint *dst, const char *src, const char sep,
const char *p;
for (p = src; *p; p++) {
switch (*src) {
switch (*p) {
case '\b': av_bprintf(dst, "%s", "\\b"); break;
case '\f': av_bprintf(dst, "%s", "\\f"); break;
case '\n': av_bprintf(dst, "%s", "\\n"); break;