[BUG] patterns: copy-paste typo in type conversion arguments
diff --git a/src/pattern.c b/src/pattern.c
index 4270cde..c593404 100644
--- a/src/pattern.c
+++ b/src/pattern.c
@@ -471,7 +471,7 @@
 			return NULL;
 
 		p->type = conv_expr->conv->in_type;
-		if (!conv_expr->conv->process(conv_expr->arg, expr->arg_len, &p->data))
+		if (!conv_expr->conv->process(conv_expr->arg, conv_expr->arg_len, &p->data))
 			return NULL;
 
 		p->type = conv_expr->conv->out_type;