From f3dc47e2c4779716adb4e17643d57aed04617a71 Mon Sep 17 00:00:00 2001 From: Zhaoliang Ma Date: Fri, 5 Feb 2021 13:19:02 +0800 Subject: [PATCH] Ending a statement with a semicolon MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Bug: None Change-Id: If7b2e0197e61d34daab68e8fcdb8b43678c1fe31 Reviewed-on: https://webrtc-review.googlesource.com/c/src/+/205940 Reviewed-by: Erik Språng Commit-Queue: Erik Språng Cr-Commit-Position: refs/heads/master@{#33304} --- call/rtp_payload_params.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/call/rtp_payload_params.cc b/call/rtp_payload_params.cc index 5c9c6c0c05..bb086de325 100644 --- a/call/rtp_payload_params.cc +++ b/call/rtp_payload_params.cc @@ -156,7 +156,7 @@ RTPVideoHeader RtpPayloadParams::GetRtpVideoHeader( PopulateRtpWithCodecSpecifics(*codec_specific_info, image.SpatialIndex(), &rtp_video_header); } - rtp_video_header.frame_type = image._frameType, + rtp_video_header.frame_type = image._frameType; rtp_video_header.rotation = image.rotation_; rtp_video_header.content_type = image.content_type_; rtp_video_header.playout_delay = image.playout_delay_;