From f1342d76fec230d1687d9ca8893185caec82812f Mon Sep 17 00:00:00 2001 From: pdmef Date: Sat, 2 Apr 2005 10:55:50 +0000 Subject: [PATCH] Rocco Rutte: fix "not matching" of regexps git-svn-id: svn://svn.berlios.de/mutt-ng/trunk@237 e385b8ad-14ed-0310-8656-cc95a2468c6d --- lib/rx.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/rx.h b/lib/rx.h index f098311..0eee105 100644 --- a/lib/rx.h +++ b/lib/rx.h @@ -30,7 +30,7 @@ typedef struct rx_t { char *pattern; /* printable version */ regex_t *rx; /* compiled expression */ - int not : 1; /* do not match */ + int not; /* do not match */ } rx_t; void rx_free (rx_t**); -- 2.20.1