X-Git-Url: https://git.llucax.com/software/mutt-debian.git/blobdiff_plain/14c29200cb58d3c4a0830265f2433849781858d0..b106baa5728eb8efafc4a959da8806d34f5ebecb:/history.c?ds=sidebyside diff --git a/history.c b/history.c index 2a711ff..f8702d4 100644 --- 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) {