aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMattias Andrée <maandree@kth.se>2016-07-10 15:28:18 +0200
committerMattias Andrée <maandree@kth.se>2016-07-10 15:28:18 +0200
commit9f1643640bf5c2507c2cd2142e6e0d1a2e5f7162 (patch)
tree245dc74587bff6fb5395fb966ee18c51bad9e2c6
parentm (diff)
downloadmds-9f1643640bf5c2507c2cd2142e6e0d1a2e5f7162.tar.gz
mds-9f1643640bf5c2507c2cd2142e6e0d1a2e5f7162.tar.bz2
mds-9f1643640bf5c2507c2cd2142e6e0d1a2e5f7162.tar.xz
m
Signed-off-by: Mattias Andrée <maandree@kth.se>
-rw-r--r--src/mds-colour.c4
-rw-r--r--src/mds-kkbd.c4
-rw-r--r--src/mds-vt.c4
3 files changed, 6 insertions, 6 deletions
diff --git a/src/mds-colour.c b/src/mds-colour.c
index 7872070..9179a61 100644
--- a/src/mds-colour.c
+++ b/src/mds-colour.c
@@ -412,7 +412,7 @@ int handle_message(void)
}
if (recv_command == NULL)
- return 0; /* How did that get here, not matter, just ignore it? */
+ return 0; /* How did that get here, no matter, just ignore it? */
#define t(expr) do { fail_if (expr); return 0; } while (0)
if (strequals(recv_command, "list-colours"))
@@ -423,7 +423,7 @@ int handle_message(void)
t (handle_set_colour(recv_name, recv_remove, recv_bytes, recv_red, recv_green, recv_blue));
#undef t
- return 0; /* How did that get here, not matter, just ignore it? */
+ return 0; /* How did that get here, no matter, just ignore it? */
fail:
return -1;
}
diff --git a/src/mds-kkbd.c b/src/mds-kkbd.c
index c6bd282..80f67af 100644
--- a/src/mds-kkbd.c
+++ b/src/mds-kkbd.c
@@ -619,7 +619,7 @@ int handle_message(void)
return eprint("received message without ID, ignoring, master server is misbehaving."), 0;
if (recv_command == NULL)
- return 0; /* How did that get here, not matter, just ignore it? */
+ return 0; /* How did that get here, no matter, just ignore it? */
#define t(expr) do { fail_if (expr); return 0; } while (0)
if (strequals(recv_command, "enumerate-keyboards"))
@@ -639,7 +639,7 @@ int handle_message(void)
t (handle_map_keyboard_leds(recv_keyboard));
#undef t
- return 0; /* How did that get here, not matter, just ignore it? */
+ return 0; /* How did that get here, no matter, just ignore it? */
fail:
return -1;
}
diff --git a/src/mds-vt.c b/src/mds-vt.c
index c593618..24d8baf 100644
--- a/src/mds-vt.c
+++ b/src/mds-vt.c
@@ -588,7 +588,7 @@ int handle_message(void)
/* Take appropriate action. */
if (recv_command == NULL)
- return 0; /* How did that get here, not matter, just ignore it? */
+ return 0; /* How did that get here, no matter, just ignore it? */
if (strequals(recv_command, "get-vt"))
fail_if (handle_get_vt(recv_client_id, recv_message_id));
@@ -596,7 +596,7 @@ int handle_message(void)
if (strequals(recv_command, "configure-vt"))
fail_if (handle_configure_vt(recv_client_id, recv_message_id, recv_graphical, recv_exclusive));
- return 0; /* How did that get here, not matter, just ignore it? */
+ return 0; /* How did that get here, no matter, just ignore it? */
fail:
return -1;
}