From: Victor Stinner Date: Fri, 15 Nov 2013 23:16:58 +0000 (+0100) Subject: Fix compiler warning on Windows 64-bit: asdl_seq_SET() stores the index parameter X-Git-Tag: v3.4.0b1~256 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=042cb465f667652df23c2e9d9ba347efeebba5a8;p=thirdparty%2FPython%2Fcpython.git Fix compiler warning on Windows 64-bit: asdl_seq_SET() stores the index parameter into a Py_ssize_t, instead of an int --- diff --git a/Include/asdl.h b/Include/asdl.h index 7c3b6d1ba7f7..495153c576ff 100644 --- a/Include/asdl.h +++ b/Include/asdl.h @@ -31,11 +31,13 @@ asdl_int_seq *_Py_asdl_int_seq_new(Py_ssize_t size, PyArena *arena); #define asdl_seq_GET(S, I) (S)->elements[(I)] #define asdl_seq_LEN(S) ((S) == NULL ? 0 : (S)->size) #ifdef Py_DEBUG -#define asdl_seq_SET(S, I, V) { \ - int _asdl_i = (I); \ - assert((S) && _asdl_i < (S)->size); \ +#define asdl_seq_SET(S, I, V) \ + do { \ + Py_ssize_t _asdl_i = (I); \ + assert((S) != NULL); \ + assert(_asdl_i < (S)->size); \ (S)->elements[_asdl_i] = (V); \ -} + } while (0) #else #define asdl_seq_SET(S, I, V) (S)->elements[I] = (V) #endif