From: Aleksandr Slobodeniuk Date: Fri, 2 Dec 2016 12:21:12 +0000 (+0300) Subject: examples: fix a typo in an error message X-Git-Tag: android-x86-7.1-r1~252^2~185 X-Git-Url: http://git.osdn.net/view?a=commitdiff_plain;h=a91f1023bc06091ef84dce0f1e12b72d7f3ba3ca;p=android-x86%2Fexternal-ffmpeg.git examples: fix a typo in an error message Signed-off-by: Vittorio Giovara --- diff --git a/doc/examples/transcode_aac.c b/doc/examples/transcode_aac.c index 5c640d9ce2..d547b326ab 100644 --- a/doc/examples/transcode_aac.c +++ b/doc/examples/transcode_aac.c @@ -580,7 +580,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;