From 52cc4a85fd7e5265ba8ff0f08adf4858f6773a11 Mon Sep 17 00:00:00 2001 From: Daniel Stenberg Date: Sun, 30 Oct 2022 17:38:16 +0100 Subject: style: use space after comment start and before comment end /* like this */ /*not this*/ checksrc is updated accordingly Closes #9828 --- lib/rtsp.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'lib/rtsp.c') diff --git a/lib/rtsp.c b/lib/rtsp.c index 6d3bf97e6..700479f29 100644 --- a/lib/rtsp.c +++ b/lib/rtsp.c @@ -311,7 +311,7 @@ static CURLcode rtsp_do(struct Curl_easy *data, bool *done) break; case RTSPREQ_RECEIVE: p_request = ""; - /* Treat interleaved RTP as body*/ + /* Treat interleaved RTP as body */ data->set.opt_no_body = FALSE; break; case RTSPREQ_LAST: @@ -650,7 +650,7 @@ static CURLcode rtsp_rtp_readwrite(struct Curl_easy *data, rtp_length = RTP_PKT_LENGTH(rtp); if(rtp_dataleft < rtp_length + 4) { - /* Need more - incomplete payload*/ + /* Need more - incomplete payload */ *readmore = TRUE; break; } -- cgit v1.2.1