summaryrefslogtreecommitdiff
path: root/toxav/rtp.c
diff options
context:
space:
mode:
authoryangfl <yangfl@users.noreply.github.com>2017-11-07 23:56:18 +0800
committerRobin Lindén <dev@robinlinden.eu>2017-11-19 23:52:23 +0100
commit2651193b991f4b691aa978b079718606891c6d48 (patch)
tree5d30a202c2f604e1e1af9658ddba1913eb617525 /toxav/rtp.c
parent4d94a07d255a6af2d3453ac9913a571fee94ee56 (diff)
Fix typo
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