diff options
author | drh <drh@noemail.net> | 2004-07-26 12:24:22 +0000 |
---|---|---|
committer | drh <drh@noemail.net> | 2004-07-26 12:24:22 +0000 |
commit | 1211de3709ba86d03c6cc8f3f561e7492aef3b35 (patch) | |
tree | b975897e6f411a32e247bba1f7303b9dd5f5e15e /src/sqliteInt.h | |
parent | be5c89acd0f8b20215199d2337d6f1b1a4a3e5eb (diff) | |
download | sqlite-1211de3709ba86d03c6cc8f3f561e7492aef3b35.tar.gz sqlite-1211de3709ba86d03c6cc8f3f561e7492aef3b35.zip |
Fix problems for 64-bit machines and when SQLITE_OMIT_AUTHORIZATION is defined. (CVS 1868)
FossilOrigin-Name: e3cad1ab6226089265b4d15c6fc67cc33a31425f
Diffstat (limited to 'src/sqliteInt.h')
-rw-r--r-- | src/sqliteInt.h | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/sqliteInt.h b/src/sqliteInt.h index 39561702a..884283232 100644 --- a/src/sqliteInt.h +++ b/src/sqliteInt.h @@ -11,7 +11,7 @@ ************************************************************************* ** Internal interface definitions for SQLite. ** -** @(#) $Id: sqliteInt.h,v 1.311 2004/07/24 17:38:29 drh Exp $ +** @(#) $Id: sqliteInt.h,v 1.312 2004/07/26 12:24:23 drh Exp $ */ #ifndef _SQLITEINT_H_ #define _SQLITEINT_H_ @@ -114,8 +114,10 @@ #ifndef INTPTR_TYPE # if SQLITE_PTR_SZ==4 # define INTPTR_TYPE int +# define UINTPTR_TYPE unsigned int # else # define INTPTR_TYPE sqlite_int64 +# define UINTPTR_TYPE sqlite_uint64 # endif #endif typedef sqlite_int64 i64; /* 8-byte signed integer */ @@ -126,7 +128,7 @@ typedef INT16_TYPE i16; /* 2-byte signed integer */ typedef UINT8_TYPE u8; /* 1-byte unsigned integer */ typedef UINT8_TYPE i8; /* 1-byte signed integer */ typedef INTPTR_TYPE ptr; /* Big enough to hold a pointer */ -typedef unsigned INTPTR_TYPE uptr; /* Big enough to hold a pointer */ +typedef UINTPTR_TYPE uptr; /* Big enough to hold a pointer */ /* ** Macros to determine whether the machine is big or little endian, |