aboutsummaryrefslogtreecommitdiff
path: root/sway
diff options
context:
space:
mode:
authorS. Christoffer Eliesen <christoffer@eliesen.no>2015-11-04 00:41:28 +0100
committerS. Christoffer Eliesen <christoffer@eliesen.no>2015-11-04 01:32:37 +0100
commit5c1e20b6ff0064f5ed948fc51ed029dd613f33db (patch)
treeb763d9fba1c5e1a3c6f48c3fa2add59499904680 /sway
parent62226460dd7eb878b960d3af03dbdce03f853c20 (diff)
downloadsway-5c1e20b6ff0064f5ed948fc51ed029dd613f33db.tar.xz
commands: gaps: Accept zero value.
Diffstat (limited to 'sway')
-rw-r--r--sway/commands.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/sway/commands.c b/sway/commands.c
index 497e8eb1..7bfb71ba 100644
--- a/sway/commands.c
+++ b/sway/commands.c
@@ -766,7 +766,7 @@ static struct cmd_results *cmd_gaps(int argc, char **argv) {
// gaps amount
if (argc >= 1 && isdigit(*amount_str)) {
int amount = (int)strtol(amount_str, NULL, 10);
- if (errno == ERANGE || amount == 0) {
+ if (errno == ERANGE) {
errno = 0;
return cmd_results_new(CMD_INVALID, "gaps", "Number is out out of range.");
}
@@ -781,7 +781,7 @@ static struct cmd_results *cmd_gaps(int argc, char **argv) {
// gaps inner|outer n
else if (argc >= 2 && isdigit((amount_str = argv[1])[0])) {
int amount = (int)strtol(amount_str, NULL, 10);
- if (errno == ERANGE || amount == 0) {
+ if (errno == ERANGE) {
errno = 0;
return cmd_results_new(CMD_INVALID, "gaps", "Number is out out of range.");
}
@@ -829,7 +829,7 @@ static struct cmd_results *cmd_gaps(int argc, char **argv) {
// gaps ... n
amount_str = argv[3];
int amount = (int)strtol(amount_str, NULL, 10);
- if (errno == ERANGE || amount == 0) {
+ if (errno == ERANGE) {
errno = 0;
return cmd_results_new(CMD_INVALID, "gaps", "Number is out out of range.");
}