commit | 95f0e4c401eaa7dc49c93446d51bfe4b76459d50 | [log] [tgz] |
---|---|---|
author | Neal Norwitz <nnorwitz@gmail.com> | Sat Apr 01 09:08:06 2006 +0000 |
committer | Neal Norwitz <nnorwitz@gmail.com> | Sat Apr 01 09:08:06 2006 +0000 |
tree | cdb7f37546837047e767d0dbcc9c222fa1258a3d | |
parent | 828fdefd920ff095f998af43fd1c5ada1cf13fa3 [diff] [blame] |
Make ssize_t clean
diff --git a/Modules/_sqlite/connection.c b/Modules/_sqlite/connection.c index e53f0b5..0445b38 100644 --- a/Modules/_sqlite/connection.c +++ b/Modules/_sqlite/connection.c
@@ -377,7 +377,7 @@ { long longval; const char* buffer; - int buflen; + Py_ssize_t buflen; PyObject* stringval; if (PyErr_Occurred()) { @@ -416,7 +416,7 @@ PyObject* cur_py_value; const char* val_str; PY_LONG_LONG val_int; - int buflen; + Py_ssize_t buflen; void* raw_buffer; args = PyTuple_New(argc);