From e684b799e08954ed954cd9584bf1f6ae649e151b Mon Sep 17 00:00:00 2001 From: David Sommerseth Date: Mon, 2 Mar 2009 19:15:22 +0100 Subject: Compile fix: Use sqlite_int64 instead of sqlite3_int64 This makes it possible to compile it on some older versions of the SQLite3 library --- database/sqlite/sqlite.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'database/sqlite/sqlite.h') diff --git a/database/sqlite/sqlite.h b/database/sqlite/sqlite.h index 9b67523..8195c36 100644 --- a/database/sqlite/sqlite.h +++ b/database/sqlite/sqlite.h @@ -59,7 +59,7 @@ typedef struct __sqlite_dbresult { _sqlite_header *headerrec; size_t num_tuples; size_t num_fields; - sqlite3_int64 last_insert_id; + sqlite_int64 last_insert_id; // Used for search functions _sqlite_tuples *srch_tuples; -- cgit