1
mirror of https://git.videolan.org/git/ffmpeg.git synced 2024-09-29 16:23:10 +02:00

rtpdec_h264: Add a missing closing paren in a log message

Signed-off-by: Martin Storsjö <martin@martin.st>
This commit is contained in:
Martin Storsjö 2015-02-20 20:57:17 +02:00
parent 12655c4804
commit ff394ca087

View File

@ -324,7 +324,7 @@ static int h264_handle_packet(AVFormatContext *ctx, PayloadContext *data,
case 27: // MTAP-24
case 29: // FU-B
av_log(ctx, AV_LOG_ERROR,
"Unhandled type (%d) (See RFC for implementation details\n",
"Unhandled type (%d) (See RFC for implementation details)\n",
type);
result = AVERROR(ENOSYS);
break;