Browse Source

ffprobe: fix C escaping.

tags/n1.0
Clément Bœsch 13 years ago
parent
commit
8619362ff1
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      ffprobe.c

+ 1
- 1
ffprobe.c 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;


Loading…
Cancel
Save