summaryrefslogtreecommitdiff
path: root/pcre_jit_test.c
diff options
context:
space:
mode:
authorph10 <ph10@2f5784b3-3f2a-0410-8824-cb99058d5e15>2011-08-27 10:18:46 +0000
committerph10 <ph10@2f5784b3-3f2a-0410-8824-cb99058d5e15>2011-08-27 10:18:46 +0000
commita7f4289cadfc50c1b69530344c5a81edc41138fd (patch)
treec09d2d212e4a95e215ad25b38741a9f2c017546d /pcre_jit_test.c
parenta2394219cf791e28b6a138f9233890ffb94fe955 (diff)
downloadpcre-a7f4289cadfc50c1b69530344c5a81edc41138fd.tar.gz
Change pcre_assign_jit_callback to pcre_assign_jit_stack.
git-svn-id: svn://vcs.exim.org/pcre/code/trunk@675 2f5784b3-3f2a-0410-8824-cb99058d5e15
Diffstat (limited to 'pcre_jit_test.c')
-rw-r--r--pcre_jit_test.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/pcre_jit_test.c b/pcre_jit_test.c
index d5853e5..f22b0c3 100644
--- a/pcre_jit_test.c
+++ b/pcre_jit_test.c
@@ -78,7 +78,7 @@ static void setstack(pcre_extra *extra)
static pcre_jit_stack *stack;
if (stack) pcre_jit_stack_free(stack);
stack = pcre_jit_stack_alloc(1, 1024 * 1024);
- pcre_assign_jit_callback(extra, callback, stack);
+ pcre_assign_jit_stack(extra, callback, stack);
}
/* --------------------------------------------------------------------------------------- */