summaryrefslogtreecommitdiff
path: root/ffprobe.c
diff options
context:
space:
mode:
authorClément Bœsch <ubitux@gmail.com>2011-09-08 23:02:34 +0200
committerClément Bœsch <ubitux@gmail.com>2011-09-08 23:15:55 +0200
commit5241bc2773c97d2b68763e046dd83ceb2b294b8b (patch)
treec210933f361ffce5f58563d6df5179fe3e1a71bd /ffprobe.c
parent78d7d8fe9170f38ee0b2ab6f731ff1a61c712db5 (diff)
ffprobe: replace simple string printing with the appropriate helper.
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 9c4f2d182e..d435ee3206 100644
--- a/ffprobe.c
+++ b/ffprobe.c
@@ -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)