summaryrefslogtreecommitdiff
path: root/lib/rtsp.c
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2022-10-30 17:38:16 +0100
committerDaniel Stenberg <daniel@haxx.se>2022-10-30 22:31:29 +0100
commit52cc4a85fd7e5265ba8ff0f08adf4858f6773a11 (patch)
tree42840cae8269d796f753587dcd493d36f7384dab /lib/rtsp.c
parentb8c302dcbae53a79a85b42b9acfabd392a8a530e (diff)
downloadcurl-52cc4a85fd7e5265ba8ff0f08adf4858f6773a11.tar.gz
style: use space after comment start and before comment end
/* like this */ /*not this*/ checksrc is updated accordingly Closes #9828
Diffstat (limited to 'lib/rtsp.c')
-rw-r--r--lib/rtsp.c4
1 files changed, 2 insertions, 2 deletions
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;
}