From 0909ab8af93c7ecab9a7e026509c4fadbd0da31f Mon Sep 17 00:00:00 2001 From: c9s Date: Sat, 24 May 2014 17:14:17 +0800 Subject: [PATCH] put combined_pattern to the end of struct --- include/r3.h | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/include/r3.h b/include/r3.h index 91d300d..15e769f 100644 --- a/include/r3.h +++ b/include/r3.h @@ -46,10 +46,12 @@ struct _node { /** compile-time variables here.... **/ /* the combined regexp pattern string from pattern_tokens */ - char * combined_pattern; pcre * pcre_pattern; pcre_extra * pcre_extra; + + char * combined_pattern; + /** * the pointer of route data */