summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorPikalaxALT <pikalaxalt@gmail.com>2018-03-06 21:51:25 -0500
committerPikalaxALT <pikalaxalt@gmail.com>2018-03-06 21:51:25 -0500
commitb2d8ce10ceb9063ae44daf4b6f8cb8a956cbde26 (patch)
treebb3547f739921200560de154bcff2210088d3473 /src
parentaa2cb6a974fd293f313e66db5939e9ce3e09babf (diff)
Fix build crash
Diffstat (limited to 'src')
-rw-r--r--src/match_call.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/match_call.c b/src/match_call.c
index 5c46a16d1..bedea65ec 100644
--- a/src/match_call.c
+++ b/src/match_call.c
@@ -865,22 +865,22 @@ u32 MatchCall_GetRematchTableIdx(u32 idx)
return sMatchCall_GetRematchTableIdxFunctions[i](matchCall);
}
-static static u32 MatchCall_GetRematchTableIdx_Type0(match_call_t matchCall)
+static u32 MatchCall_GetRematchTableIdx_Type0(match_call_t matchCall)
{
return REMATCH_TABLE_ENTRIES;
}
-static static u32 MatchCall_GetRematchTableIdx_Type1(match_call_t matchCall)
+static u32 MatchCall_GetRematchTableIdx_Type1(match_call_t matchCall)
{
return matchCall.type1->rematchTableIdx;
}
-static static u32 MatchCall_GetRematchTableIdx_Type2(match_call_t matchCall)
+static u32 MatchCall_GetRematchTableIdx_Type2(match_call_t matchCall)
{
return matchCall.type2->rematchTableIdx;
}
-static static u32 MatchCall_GetRematchTableIdx_Type3(match_call_t matchCall)
+static u32 MatchCall_GetRematchTableIdx_Type3(match_call_t matchCall)
{
return REMATCH_TABLE_ENTRIES;
}