aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChris Toshok <toshok@src.gnome.org>2002-12-10 12:24:49 +0800
committerChris Toshok <toshok@src.gnome.org>2002-12-10 12:24:49 +0800
commitc29a83e4f64698491c2a379382f0fdcc6bfcbce8 (patch)
tree88d64706bd13ad2bf3f183b6fc50acaaf15ae2f1
parenta39c3ef6fb353318e9811991180a9e33120a1f5b (diff)
downloadgsoc2013-evolution-c29a83e4f64698491c2a379382f0fdcc6bfcbce8.tar
gsoc2013-evolution-c29a83e4f64698491c2a379382f0fdcc6bfcbce8.tar.gz
gsoc2013-evolution-c29a83e4f64698491c2a379382f0fdcc6bfcbce8.tar.bz2
gsoc2013-evolution-c29a83e4f64698491c2a379382f0fdcc6bfcbce8.tar.lz
gsoc2013-evolution-c29a83e4f64698491c2a379382f0fdcc6bfcbce8.tar.xz
gsoc2013-evolution-c29a83e4f64698491c2a379382f0fdcc6bfcbce8.tar.zst
gsoc2013-evolution-c29a83e4f64698491c2a379382f0fdcc6bfcbce8.zip
fix parameter list for e_trie_search
svn path=/trunk/; revision=19082
-rw-r--r--e-util/e-trie.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/e-util/e-trie.c b/e-util/e-trie.c
index 21e7a37790..cdfc3dd0c6 100644
--- a/e-util/e-trie.c
+++ b/e-util/e-trie.c
@@ -298,7 +298,7 @@ e_trie_add (ETrie *trie, const char *pattern, int pattern_id)
*/
const char *
-e_trie_search (ETrie *trie, const char *buffer, size_t buflen, const char **pattern)
+e_trie_search (ETrie *trie, const char *buffer, size_t buflen, int *matched_id)
{
const unsigned char *inptr, *inend, *prev, *pat;
register size_t inlen = buflen;