summaryrefslogtreecommitdiffstats
path: root/sway/commands/input/xkb_options.c
diff options
context:
space:
mode:
authorLibravatar Tony Crisci <tony@dubstepdish.com>2017-12-16 12:40:58 -0500
committerLibravatar Tony Crisci <tony@dubstepdish.com>2017-12-16 12:40:58 -0500
commitb8261ab24bbc8159deffadb78f5108a612d27534 (patch)
tree26fa6ad1eb76cdf043240700b85a9a6ab7779039 /sway/commands/input/xkb_options.c
parentrename config apply cmds (diff)
downloadsway-b8261ab24bbc8159deffadb78f5108a612d27534.tar.gz
sway-b8261ab24bbc8159deffadb78f5108a612d27534.tar.zst
sway-b8261ab24bbc8159deffadb78f5108a612d27534.zip
expect exactly one xkb arg
Diffstat (limited to 'sway/commands/input/xkb_options.c')
-rw-r--r--sway/commands/input/xkb_options.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sway/commands/input/xkb_options.c b/sway/commands/input/xkb_options.c
index 180f40d5..b24c33c1 100644
--- a/sway/commands/input/xkb_options.c
+++ b/sway/commands/input/xkb_options.c
@@ -7,7 +7,7 @@
7struct cmd_results *input_cmd_xkb_options(int argc, char **argv) { 7struct cmd_results *input_cmd_xkb_options(int argc, char **argv) {
8 sway_log(L_DEBUG, "xkb options for device: %s", current_input_config->identifier); 8 sway_log(L_DEBUG, "xkb options for device: %s", current_input_config->identifier);
9 struct cmd_results *error = NULL; 9 struct cmd_results *error = NULL;
10 if ((error = checkarg(argc, "xkb_options", EXPECTED_AT_LEAST, 1))) { 10 if ((error = checkarg(argc, "xkb_options", EXPECTED_EQUAL_TO, 1))) {
11 return error; 11 return error;
12 } 12 }
13 if (!current_input_config) { 13 if (!current_input_config) {