aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJeffrey Stedfast <fejj@src.gnome.org>2001-04-16 05:54:12 +0800
committerJeffrey Stedfast <fejj@src.gnome.org>2001-04-16 05:54:12 +0800
commitcd05d11ca05c94d89620438aa82e5a64b5464f55 (patch)
tree90abdb6ab337c6d8b8c26c551cc074ea83d0ae86
parentadc000f756fc9f0327b6564e178b638e60b8ad38 (diff)
downloadgsoc2013-evolution-cd05d11ca05c94d89620438aa82e5a64b5464f55.tar
gsoc2013-evolution-cd05d11ca05c94d89620438aa82e5a64b5464f55.tar.gz
gsoc2013-evolution-cd05d11ca05c94d89620438aa82e5a64b5464f55.tar.bz2
gsoc2013-evolution-cd05d11ca05c94d89620438aa82e5a64b5464f55.tar.lz
gsoc2013-evolution-cd05d11ca05c94d89620438aa82e5a64b5464f55.tar.xz
gsoc2013-evolution-cd05d11ca05c94d89620438aa82e5a64b5464f55.tar.zst
gsoc2013-evolution-cd05d11ca05c94d89620438aa82e5a64b5464f55.zip
oops, &pattern
svn path=/trunk/; revision=9334
-rw-r--r--camel/camel-mime-utils.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/camel/camel-mime-utils.c b/camel/camel-mime-utils.c
index 1d873007f6..510323312c 100644
--- a/camel/camel-mime-utils.c
+++ b/camel/camel-mime-utils.c
@@ -3063,9 +3063,9 @@ header_raw_check_mailing_list(struct _header_raw **list)
char *errstr;
size_t len;
- len = regerror (errcode, pattern, NULL, 0);
+ len = regerror (errcode, &pattern, NULL, 0);
errstr = g_malloc0 (len + 1);
- regerror (errcode, pattern, errstr, len);
+ regerror (errcode, &pattern, errstr, len);
g_warning ("Internal error, compiling regex failed: %s: %s",
mail_list_magic[i].pattern, errstr);