summaryrefslogtreecommitdiff
path: root/Include/objimpl.h
diff options
context:
space:
mode:
authorMartin v. Löwis <martin@v.loewis.de>2006-03-01 16:56:25 +0000
committerMartin v. Löwis <martin@v.loewis.de>2006-03-01 16:56:25 +0000
commit6db0e00d571781806cb850088365730fa64e80a6 (patch)
tree7bf83d4ae13bca0e95636ac96926eb26cf552e93 /Include/objimpl.h
parent056a69cba6c6249b12ceffb7f00c324f5a8f16d4 (diff)
downloadcpython-git-6db0e00d571781806cb850088365730fa64e80a6.tar.gz
Change GC refcount to Py_ssize_t.
Diffstat (limited to 'Include/objimpl.h')
-rw-r--r--Include/objimpl.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/Include/objimpl.h b/Include/objimpl.h
index ed521fe556..f6fd1a4db9 100644
--- a/Include/objimpl.h
+++ b/Include/objimpl.h
@@ -250,7 +250,7 @@ typedef union _gc_head {
struct {
union _gc_head *gc_next;
union _gc_head *gc_prev;
- int gc_refs;
+ Py_ssize_t gc_refs;
} gc;
long double dummy; /* force worst-case alignment */
} PyGC_Head;