Author: neal.norwitz
Date: Sun Aug 12 06:48:44 2007
New Revision: 56948

Modified:
   python/branches/py3k-buffer/Include/object.h
Log:
Fix compiler warning (real problem on 64-bit).

Modified: python/branches/py3k-buffer/Include/object.h
==============================================================================
--- python/branches/py3k-buffer/Include/object.h        (original)
+++ python/branches/py3k-buffer/Include/object.h        Sun Aug 12 06:48:44 2007
@@ -151,7 +151,7 @@
         Py_ssize_t *shape;
         Py_ssize_t *strides;
         Py_ssize_t *suboffsets;
-        int itemsize;
+        Py_ssize_t itemsize;
         void *internal;
 } PyBuffer;
 
_______________________________________________
Python-3000-checkins mailing list
[email protected]
http://mail.python.org/mailman/listinfo/python-3000-checkins

Reply via email to