summaryrefslogtreecommitdiff
path: root/toxav/rtp.c
diff options
context:
space:
mode:
Diffstat (limited to 'toxav/rtp.c')
-rw-r--r--toxav/rtp.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/toxav/rtp.c b/toxav/rtp.c
index 6f939082..350eeacd 100644
--- a/toxav/rtp.c
+++ b/toxav/rtp.c
@@ -141,7 +141,7 @@ int rtp_send_data(RTPSession *session, const uint8_t *data, uint16_t length, Log
141 if (MAX_CRYPTO_DATA_SIZE > length + sizeof(struct RTPHeader) + 1) { 141 if (MAX_CRYPTO_DATA_SIZE > length + sizeof(struct RTPHeader) + 1) {
142 142
143 /** 143 /**
144 * The lenght is lesser than the maximum allowed lenght (including header) 144 * The length is lesser than the maximum allowed length (including header)
145 * Send the packet in single piece. 145 * Send the packet in single piece.
146 */ 146 */
147 147
@@ -153,7 +153,7 @@ int rtp_send_data(RTPSession *session, const uint8_t *data, uint16_t length, Log
153 } else { 153 } else {
154 154
155 /** 155 /**
156 * The lenght is greater than the maximum allowed lenght (including header) 156 * The length is greater than the maximum allowed length (including header)
157 * Send the packet in multiple pieces. 157 * Send the packet in multiple pieces.
158 */ 158 */
159 159