summaryrefslogtreecommitdiff
path: root/Python/pythonrun.c
diff options
context:
space:
mode:
Diffstat (limited to 'Python/pythonrun.c')
-rw-r--r--Python/pythonrun.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/Python/pythonrun.c b/Python/pythonrun.c
index 96f385f9e2..734b72b0c4 100644
--- a/Python/pythonrun.c
+++ b/Python/pythonrun.c
@@ -155,7 +155,7 @@ run_tty_loop(fp, filename)
for (;;) {
ret = run_tty_1(fp, filename);
#ifdef REF_DEBUG
- fprintf(stderr, "[%ld refs]\n", ref_total);
+ fprintf(stderr, "[%ld refs]\n", _Py_RefTotal);
#endif
if (ret == E_EOF)
return 0;
@@ -664,7 +664,7 @@ goaway(sts)
err_clear();
#ifdef REF_DEBUG
- fprintf(stderr, "[%ld refs]\n", ref_total);
+ fprintf(stderr, "[%ld refs]\n", _Py_RefTotal);
#endif
#ifdef TRACE_REFS