From 3aa1ff30f3f44a2ee980556a9bd6c0bc7d9087ac Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=90=D0=BB=D0=B5=D0=BA=D1=81=D0=B0=D0=BD=D0=B4=D1=80=20?= =?UTF-8?q?=D0=A1=D0=BB=D0=BE=D0=B1=D0=BE=D0=B4=D0=B5=D0=BD=D1=8E=D0=BA?= Date: Wed, 30 Nov 2016 13:31:58 +0300 Subject: [PATCH] doc/examples/transcode_aac: fix a typo Signed-off-by: Michael Niedermayer --- doc/examples/transcode_aac.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/examples/transcode_aac.c b/doc/examples/transcode_aac.c index 9b3ee67695..d7947b496a 100644 --- a/doc/examples/transcode_aac.c +++ b/doc/examples/transcode_aac.c @@ -566,7 +566,7 @@ static int init_output_frame(AVFrame **frame, * sure that the audio frame can hold as many samples as specified. */ if ((error = av_frame_get_buffer(*frame, 0)) < 0) { - fprintf(stderr, "Could allocate output frame samples (error '%s')\n", + fprintf(stderr, "Could not allocate output frame samples (error '%s')\n", get_error_text(error)); av_frame_free(frame); return error;