]> git.llucax.com Git - software/mutt-debian.git/blobdiff - history.c
Imported Upstream version 1.5.19
[software/mutt-debian.git] / history.c
index 2a711ffee2453814a5a7ceb748654acfbbfa3964..f8702d4542d1349474883a839c3b785ed8e56c5c 100644 (file)
--- a/history.c
+++ b/history.c
@@ -35,7 +35,7 @@ struct history
 static struct history History[HC_LAST];
 static int OldSize = 0;
 
-#define GET_HISTORY(CLASS)     ((CLASS < 0 || CLASS >= HC_LAST) ? NULL : &History[CLASS])
+#define GET_HISTORY(CLASS)     ((CLASS >= HC_LAST) ? NULL : &History[CLASS])
 
 static void init_history (struct history *h)
 {