diff options
| author | David Sommerseth <dazo@users.sourceforge.net> | 2009-03-02 19:15:22 +0100 |
|---|---|---|
| committer | David Sommerseth <dazo@users.sourceforge.net> | 2009-03-02 19:15:22 +0100 |
| commit | e684b799e08954ed954cd9584bf1f6ae649e151b (patch) | |
| tree | 2d4a034f1b199d257d64d9cebb2d4c10f7cf970e /database/sqlite | |
| parent | d5c7a4c72731cc36e0e8cf4fd3a6a0811344a4d8 (diff) | |
| download | eurephia-e684b799e08954ed954cd9584bf1f6ae649e151b.tar.gz eurephia-e684b799e08954ed954cd9584bf1f6ae649e151b.tar.xz eurephia-e684b799e08954ed954cd9584bf1f6ae649e151b.zip | |
Compile fix: Use sqlite_int64 instead of sqlite3_int64
This makes it possible to compile it on some older versions
of the SQLite3 library
Diffstat (limited to 'database/sqlite')
| -rw-r--r-- | database/sqlite/sqlite.h | 2 |
1 files changed, 1 insertions, 1 deletions
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; |
