diff options
author | Jeffrey Stedfast <fejj@src.gnome.org> | 2002-12-10 12:20:53 +0800 |
---|---|---|
committer | Jeffrey Stedfast <fejj@src.gnome.org> | 2002-12-10 12:20:53 +0800 |
commit | a39c3ef6fb353318e9811991180a9e33120a1f5b (patch) | |
tree | 98572ef738b3e16749646299f0a820a619f56971 | |
parent | 62398da200208150c881dfc9482b076460ba9b8a (diff) | |
download | gsoc2013-evolution-a39c3ef6fb353318e9811991180a9e33120a1f5b.tar.gz gsoc2013-evolution-a39c3ef6fb353318e9811991180a9e33120a1f5b.tar.zst gsoc2013-evolution-a39c3ef6fb353318e9811991180a9e33120a1f5b.zip |
oops, forgot to add the pattern_id arg to e_trie_add
svn path=/trunk/; revision=19081
-rw-r--r-- | e-util/e-trie.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/e-util/e-trie.c b/e-util/e-trie.c index c0c0e1f6d9..21e7a37790 100644 --- a/e-util/e-trie.c +++ b/e-util/e-trie.c @@ -213,7 +213,7 @@ dump_trie (struct _trie_state *s, int depth) */ void -e_trie_add (ETrie *trie, const char *pattern) +e_trie_add (ETrie *trie, const char *pattern, int pattern_id) { const unsigned char *inptr = (const unsigned char *) pattern; struct _trie_state *q, *q1, *r; |