diff options
author | Martin Storsjö <martin@martin.st> | 2015-02-20 20:57:17 +0200 |
---|---|---|
committer | Martin Storsjö <martin@martin.st> | 2015-02-21 23:36:56 +0200 |
commit | ff394ca087d41941d2157e7a4e356e3ad312494e (patch) | |
tree | 50afc21b24dc7eca3588f0ea085be6458a12aa38 /libavformat | |
parent | 12655c48049f9a52e5504bde90fe738862b0ff08 (diff) | |
download | ffmpeg-ff394ca087d41941d2157e7a4e356e3ad312494e.tar.gz |
rtpdec_h264: Add a missing closing paren in a log message
Signed-off-by: Martin Storsjö <martin@martin.st>
Diffstat (limited to 'libavformat')
-rw-r--r-- | libavformat/rtpdec_h264.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/rtpdec_h264.c b/libavformat/rtpdec_h264.c index e781b3633d..9ee9f5e86d 100644 --- a/libavformat/rtpdec_h264.c +++ b/libavformat/rtpdec_h264.c @@ -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; |