diff options
author | Mark Shannon <mark@hotpy.org> | 2023-04-29 04:51:55 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-04-29 04:51:55 (GMT) |
commit | 738c226786997262b76557d2dadd2beb89ea3fd1 (patch) | |
tree | 60e4c176e7064ac53dc602ac5c31102264631ce4 /Python/specialize.c | |
parent | e1f14643dc0e6024f8df9ae975c3b05912a3cb28 (diff) | |
download | cpython-738c226786997262b76557d2dadd2beb89ea3fd1.zip cpython-738c226786997262b76557d2dadd2beb89ea3fd1.tar.gz cpython-738c226786997262b76557d2dadd2beb89ea3fd1.tar.bz2 |
GH-103082: Code cleanup in instrumentation code (#103474)
Diffstat (limited to 'Python/specialize.c')
-rw-r--r-- | Python/specialize.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Python/specialize.c b/Python/specialize.c index fbdb435..b1cc661 100644 --- a/Python/specialize.c +++ b/Python/specialize.c @@ -148,7 +148,7 @@ print_spec_stats(FILE *out, OpcodeStats *stats) PRIu64 "\n", i, j, val); } } - for(int j = 0; j < 256; j++) { + for (int j = 0; j < 256; j++) { if (stats[i].pair_count[j]) { fprintf(out, "opcode[%d].pair_count[%d] : %" PRIu64 "\n", i, j, stats[i].pair_count[j]); |