File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -868,7 +868,7 @@ execRecursiveTristate(ExtractedNode *node, GinTernaryValue *check)
868
868
res = GIN_TRUE ;
869
869
for (i = 0 ; i < node -> args .count ; i ++ )
870
870
{
871
- v = execRecursive (node -> args .items [i ], ( bool * ) check );
871
+ v = execRecursiveTristate (node -> args .items [i ], check );
872
872
if (v == GIN_FALSE )
873
873
return GIN_FALSE ;
874
874
else if (v == GIN_MAYBE )
@@ -879,7 +879,7 @@ execRecursiveTristate(ExtractedNode *node, GinTernaryValue *check)
879
879
res = GIN_FALSE ;
880
880
for (i = 0 ; i < node -> args .count ; i ++ )
881
881
{
882
- v = execRecursive (node -> args .items [i ], ( bool * ) check );
882
+ v = execRecursiveTristate (node -> args .items [i ], check );
883
883
if (v == GIN_TRUE )
884
884
return GIN_TRUE ;
885
885
else if (v == GIN_MAYBE )
You can’t perform that action at this time.
0 commit comments