diff options
author | Clément Bœsch <ubitux@gmail.com> | 2011-09-08 23:02:34 +0200 |
---|---|---|
committer | Clément Bœsch <ubitux@gmail.com> | 2011-09-08 23:15:55 +0200 |
commit | 5241bc2773c97d2b68763e046dd83ceb2b294b8b (patch) | |
tree | c210933f361ffce5f58563d6df5179fe3e1a71bd /ffprobe.c | |
parent | 78d7d8fe9170f38ee0b2ab6f731ff1a61c712db5 (diff) | |
download | ffmpeg-5241bc2773c97d2b68763e046dd83ceb2b294b8b.tar.gz |
ffprobe: replace simple string printing with the appropriate helper.
Diffstat (limited to 'ffprobe.c')
-rw-r--r-- | ffprobe.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -291,7 +291,7 @@ static void show_stream(struct writer *w, AVFormatContext *fmt_ctx, int stream_i break; } } else { - print_fmt("codec_type", "unknown"); + print_str("codec_type", "unknown"); } if (fmt_ctx->iformat->flags & AVFMT_SHOW_IDS) |