Skip to content

Commit 5c7c9e2

Browse files
committed
Make function static
1 parent 48dfcb5 commit 5c7c9e2

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

Python/instrumentation.c

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2886,7 +2886,8 @@ typedef struct {
28862886
int bi_offset;
28872887
} branchesiterator;
28882888

2889-
PyObject *int_triple(int a, int b, int c) {
2889+
static PyObject *
2890+
int_triple(int a, int b, int c) {
28902891
PyObject *obja = PyLong_FromLong(a);
28912892
PyObject *objb = NULL;
28922893
PyObject *objc = NULL;

0 commit comments

Comments
 (0)