diff options
author | Martin v. Löwis <martin@v.loewis.de> | 2006-03-01 16:56:25 (GMT) |
---|---|---|
committer | Martin v. Löwis <martin@v.loewis.de> | 2006-03-01 16:56:25 (GMT) |
commit | 6db0e00d571781806cb850088365730fa64e80a6 (patch) | |
tree | 7bf83d4ae13bca0e95636ac96926eb26cf552e93 /Include/objimpl.h | |
parent | 056a69cba6c6249b12ceffb7f00c324f5a8f16d4 (diff) | |
download | cpython-6db0e00d571781806cb850088365730fa64e80a6.zip cpython-6db0e00d571781806cb850088365730fa64e80a6.tar.gz cpython-6db0e00d571781806cb850088365730fa64e80a6.tar.bz2 |
Change GC refcount to Py_ssize_t.
Diffstat (limited to 'Include/objimpl.h')
-rw-r--r-- | Include/objimpl.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Include/objimpl.h b/Include/objimpl.h index ed521fe..f6fd1a4 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; |