summaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorLibravatar Ryan Dwyer <RyanDwyer@users.noreply.github.com>2018-10-23 20:33:40 +1000
committerLibravatar GitHub <noreply@github.com>2018-10-23 20:33:40 +1000
commite33671fd9a478a917250b2e3b889c9ee0e49c65c (patch)
tree32f4a9782328486f529c09fe2bb8092c25b9993d /include
parentMerge pull request #2940 from RyanDwyer/fix-swaybar-crash (diff)
parentcommands: replace EXPECTED_LESS_THAN with EXPECTED_AT_MOST (diff)
downloadsway-e33671fd9a478a917250b2e3b889c9ee0e49c65c.tar.gz
sway-e33671fd9a478a917250b2e3b889c9ee0e49c65c.tar.zst
sway-e33671fd9a478a917250b2e3b889c9ee0e49c65c.zip
Merge pull request #2941 from ianyfan/commands
commands: clean up checkargs function +other small changes
Diffstat (limited to 'include')
-rw-r--r--include/sway/commands.h3
1 files changed, 1 insertions, 2 deletions
diff --git a/include/sway/commands.h b/include/sway/commands.h
index 2f6d31b1..6606775a 100644
--- a/include/sway/commands.h
+++ b/include/sway/commands.h
@@ -39,9 +39,8 @@ struct cmd_results {
39}; 39};
40 40
41enum expected_args { 41enum expected_args {
42 EXPECTED_MORE_THAN,
43 EXPECTED_AT_LEAST, 42 EXPECTED_AT_LEAST,
44 EXPECTED_LESS_THAN, 43 EXPECTED_AT_MOST,
45 EXPECTED_EQUAL_TO 44 EXPECTED_EQUAL_TO
46}; 45};
47 46