summaryrefslogtreecommitdiffstats
path: root/lib/textsearch.c
diff options
context:
space:
mode:
Diffstat (limited to 'lib/textsearch.c')
-rw-r--r--lib/textsearch.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/textsearch.c b/lib/textsearch.c
index 4f16eec5d554..f68dea8806be 100644
--- a/lib/textsearch.c
+++ b/lib/textsearch.c
@@ -89,9 +89,9 @@
89 * goto errout; 89 * goto errout;
90 * } 90 * }
91 * 91 *
92 * pos = textsearch_find_continuous(conf, \&state, example, strlen(example)); 92 * pos = textsearch_find_continuous(conf, &state, example, strlen(example));
93 * if (pos != UINT_MAX) 93 * if (pos != UINT_MAX)
94 * panic("Oh my god, dancing chickens at \%d\n", pos); 94 * panic("Oh my god, dancing chickens at %d\n", pos);
95 * 95 *
96 * textsearch_destroy(conf); 96 * textsearch_destroy(conf);
97 */ 97 */