tMinor style fix. - rohrpost - A commandline mail client to change the world as we see it.
(HTM) git clone git://r-36.net/rohrpost
(DIR) Log
(DIR) Files
(DIR) Refs
(DIR) LICENSE
---
(DIR) commit c742105bf1e76f07544ee3d56300eff2b31934ca
(DIR) parent 7a742c5ddc352f61634482168cef301dab05530d
(HTM) Author: Christoph Lohmann <20h@r-36.net>
Date: Tue, 24 Jul 2012 11:58:58 +0200
Minor style fix.
Diffstat:
llist.c | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
---
(DIR) diff --git a/llist.c b/llist.c
t@@ -320,9 +320,10 @@ llist_internfind(llist_t *llist, char *regex, int mode)
continue;
}
- if (!regexec(&preg, elem->key, 0, NULL, 0))
+ if (!regexec(&preg, elem->key, 0, NULL, 0)) {
llist_add(results, elem->key, elem->data,
elem->datalen);
+ }
}
regfree(&preg);