aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorLukas Fleischer <calcurse@cryptocrack.de>2012-12-06 20:32:41 +0100
committerLukas Fleischer <calcurse@cryptocrack.de>2012-12-06 20:32:41 +0100
commitdb51503b6481577daead9e8534fec002d4d09e89 (patch)
treed364def7c465d1cecf2cbbe58637ebb1919fe0b0 /src
parent599b01b06d21188cd8d53a7bb9bffd743202a6bb (diff)
downloadcalcurse-db51503b6481577daead9e8534fec002d4d09e89.tar.gz
calcurse-db51503b6481577daead9e8534fec002d4d09e89.zip
keys.c: Remove several unneeded assertions
Seen when compiling with clang and "-Wtautological-compare". Signed-off-by: Lukas Fleischer <calcurse@cryptocrack.de>
Diffstat (limited to 'src')
-rw-r--r--src/keys.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/keys.c b/src/keys.c
index 0d54701..a870882 100644
--- a/src/keys.c
+++ b/src/keys.c
@@ -222,7 +222,7 @@ enum key keys_getch(WINDOW * win, int *count, int *reg)
static void add_key_str(enum key action, int key)
{
- if (action < 0 || action > NBKEYS)
+ if (action > NBKEYS)
return;
LLIST_ADD(&keys[action], mem_strdup(keys_int2str(key)));
@@ -245,7 +245,7 @@ static void del_key_str(enum key action, int key)
llist_item_t *i;
char oldstr[BUFSIZ];
- if (action < 0 || action > NBKEYS)
+ if (action > NBKEYS)
return;
strncpy(oldstr, keys_int2str(key), BUFSIZ);
@@ -531,7 +531,7 @@ void keys_popup_info(enum key key)
info[KEY_RAISE_PRIORITY] = _("Raise a task priority inside the todo panel.");
info[KEY_LOWER_PRIORITY] = _("Lower a task priority inside the todo panel.");
- if (key < 0 || key > NBKEYS)
+ if (key > NBKEYS)
return;
#define WINROW 10