From: Timo Sirainen Date: Mon, 14 Jun 2010 14:55:23 +0000 (+0100) Subject: lib-imap: Compiler warning fix. X-Git-Tag: 2.0.rc1~178 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=175d88ae367132fc4ef533745b41331ad3daad46;p=thirdparty%2Fdovecot%2Fcore.git lib-imap: Compiler warning fix. --HG-- branch : HEAD --- diff --git a/src/lib-imap/imap-match.c b/src/lib-imap/imap-match.c index 22ff646a27..59be5adc59 100644 --- a/src/lib-imap/imap-match.c +++ b/src/lib-imap/imap-match.c @@ -192,7 +192,7 @@ imap_match_dup_real(pool_t pool, const struct imap_match_glob *glob) (void)array_append_space(&patterns); return imap_match_init_multiple_real(pool, array_idx(&patterns, 0), inboxcase, glob->sep); -}; +} struct imap_match_glob * imap_match_dup(pool_t pool, const struct imap_match_glob *glob) @@ -207,7 +207,7 @@ imap_match_dup(pool_t pool, const struct imap_match_glob *glob) } T_END; return new_glob; } -}; +} bool imap_match_globs_equal(const struct imap_match_glob *glob1, const struct imap_match_glob *glob2)