Rocco Rutte:
authorpdmef <pdmef@e385b8ad-14ed-0310-8656-cc95a2468c6d>
Sat, 2 Apr 2005 10:55:50 +0000 (10:55 +0000)
committerpdmef <pdmef@e385b8ad-14ed-0310-8656-cc95a2468c6d>
Sat, 2 Apr 2005 10:55:50 +0000 (10:55 +0000)
fix "not matching" of regexps

git-svn-id: svn://svn.berlios.de/mutt-ng/trunk@237 e385b8ad-14ed-0310-8656-cc95a2468c6d

lib/rx.h

index f098311..0eee105 100644 (file)
--- 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**);