Skip to content

Commit

Permalink
add a missing space before the right parenthesis sysmodule.c
Browse files Browse the repository at this point in the history
  • Loading branch information
gsallam authored Oct 20, 2023
1 parent 012282e commit 62ff839
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Python/sysmodule.c
Original file line number Diff line number Diff line change
Expand Up @@ -2396,7 +2396,7 @@ PyAPI_FUNC(int) PyUnstable_CopyPerfMapFile(const char* parent_filename) {
}
if (perf_map_state.perf_map == NULL) {
int ret = PyUnstable_PerfMapState_Init();
if (ret != 0){
if (ret != 0) {
return ret;
}
}
Expand Down

0 comments on commit 62ff839

Please sign in to comment.