Skip to content

Commit 4bbebf8

Browse files
committed
add two missing static qualifiers
1 parent 98b4902 commit 4bbebf8

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Python/compile.c

+2-2
Original file line numberDiff line numberDiff line change
@@ -852,7 +852,7 @@ new_basicblock()
852852
return b;
853853
}
854854

855-
basicblock *
855+
static basicblock *
856856
cfg_new_block(cfg *g)
857857
{
858858
basicblock *b = new_basicblock();
@@ -865,7 +865,7 @@ cfg_new_block(cfg *g)
865865
return b;
866866
}
867867

868-
basicblock *
868+
static basicblock *
869869
cfg_use_next_block(cfg *g, basicblock *block)
870870
{
871871
assert(block != NULL);

0 commit comments

Comments
 (0)