summaryrefslogtreecommitdiffstats
path: root/Modules/_sqlite/util.c
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2013-04-28 11:10:27 (GMT)
committerSerhiy Storchaka <storchaka@gmail.com>2013-04-28 11:10:27 (GMT)
commitd160b12292be2f7eeb824cc4b2b6d1d84dbf8b1a (patch)
treecfff8f0bac81c3676bc4c7ebe74e2a20e5740111 /Modules/_sqlite/util.c
parent4067aa272ee680f1b593bcbba2d227adb1791f2f (diff)
downloadcpython-d160b12292be2f7eeb824cc4b2b6d1d84dbf8b1a.zip
cpython-d160b12292be2f7eeb824cc4b2b6d1d84dbf8b1a.tar.gz
cpython-d160b12292be2f7eeb824cc4b2b6d1d84dbf8b1a.tar.bz2
Issue #17857: Prevent build failures with pre-3.5.0 versions of sqlite3,
such as was shipped with Centos 5 and Mac OS X 10.4.
Diffstat (limited to 'Modules/_sqlite/util.c')
-rw-r--r--Modules/_sqlite/util.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/Modules/_sqlite/util.c b/Modules/_sqlite/util.c
index a1a462c..d88bc3f 100644
--- a/Modules/_sqlite/util.c
+++ b/Modules/_sqlite/util.c
@@ -111,7 +111,7 @@ int _pysqlite_seterror(sqlite3* db, sqlite3_stmt* st)
#endif
PyObject *
-_pysqlite_long_from_int64(sqlite3_int64 value)
+_pysqlite_long_from_int64(sqlite_int64 value)
{
#ifdef HAVE_LONG_LONG
# if SIZEOF_LONG_LONG < 8
@@ -135,7 +135,7 @@ _pysqlite_long_from_int64(sqlite3_int64 value)
return PyLong_FromLong(value);
}
-sqlite3_int64
+sqlite_int64
_pysqlite_long_as_int64(PyObject * py_val)
{
int overflow;
@@ -158,8 +158,8 @@ _pysqlite_long_as_int64(PyObject * py_val)
#endif
return value;
}
- else if (sizeof(value) < sizeof(sqlite3_int64)) {
- sqlite3_int64 int64val;
+ else if (sizeof(value) < sizeof(sqlite_int64)) {
+ sqlite_int64 int64val;
if (_PyLong_AsByteArray((PyLongObject *)py_val,
(unsigned char *)&int64val, sizeof(int64val),
IS_LITTLE_ENDIAN, 1 /* signed */) >= 0) {