Fix typos, 1 in a #define, others in comments. This changes one definition: _MQ_TIMEDRECIEVE is changed to _MQ_TIMEDRECEIVE. It appears this symbol is not used anywhere.

This commit is contained in:
Nathan Hartman
2019-09-11 08:56:56 -06:00
committed by Gregory Nutt
parent bf3105fc8f
commit 366053e464
113 changed files with 142 additions and 142 deletions
+1 -1
View File
@@ -551,7 +551,7 @@ static inline int vnc_wait_connect(int display)
* The RUNNING state indicates that the server has started, it has
* established a connection with the VNC client, it is negotiated
* encodings and framebuffer characteristics, and it has started the
* updater thread. The server is now ready to recieve Client-to-Server
* updater thread. The server is now ready to receive Client-to-Server
* messages and to perform remote framebuffer updates.
*/
+1 -1
View File
@@ -97,7 +97,7 @@ int vnc_read_remainder(FAR struct vnc_session_s *session, size_t msglen,
ssize_t nrecvd;
size_t ntotal;
/* Loop until the rest of the message is recieved. */
/* Loop until the rest of the message is received. */
for (ntotal = 0; ntotal < msglen; offset += nrecvd, ntotal += nrecvd)
{