Skip to content

Commit b1c42b4

Browse files
committed
Fix indentation.
1 parent a7211e8 commit b1c42b4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

filprofiler/_profiler.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ extern void fil_finish_call(void);
88
int fil_tracer(PyObject *obj, PyFrameObject *frame, int what, PyObject *arg) {
99
if (what == PyTrace_CALL) {
1010
fil_start_call(PyUnicode_AsUTF8(frame->f_code->co_filename),
11-
PyUnicode_AsUTF8(frame->f_code->co_name));
11+
PyUnicode_AsUTF8(frame->f_code->co_name));
1212
return 0;
1313
}
1414
if (what == PyTrace_RETURN) {

0 commit comments

Comments
 (0)