Fix typos all around (thanks codespell!)

This commit is contained in:
Emmanuel Gil Peyrot
2019-02-20 16:33:32 +01:00
parent e578004b3c
commit 426c24673f
19 changed files with 26 additions and 26 deletions
+2 -2
View File
@@ -354,7 +354,7 @@ remoting_gstpipe_handler(int fd, uint32_t mask, void *data)
struct gstpipe_msg_data msg;
struct remoted_output *output = data;
/* recieve message */
/* receive message */
ret = read(fd, &msg, sizeof(msg));
if (ret != sizeof(msg)) {
weston_log("ERROR: failed to read, ret=%zd, errno=%d\n",
@@ -371,7 +371,7 @@ remoting_gstpipe_handler(int fd, uint32_t mask, void *data)
remoting_output_buffer_release(output, msg.data);
break;
default:
weston_log("Recieved unknown message! msg=%d\n", msg.type);
weston_log("Received unknown message! msg=%d\n", msg.type);
}
return 1;
}