aboutsummaryrefslogtreecommitdiff
path: root/src/printf.c
diff options
context:
space:
mode:
authordrh <drh@noemail.net>2006-03-28 23:57:17 +0000
committerdrh <drh@noemail.net>2006-03-28 23:57:17 +0000
commit27436af790273ce50212fd67473f03b0c99bb63b (patch)
tree6f5cae8ace82e2beaa0b6190a4b80cbba96bdeee /src/printf.c
parent4dd238a51d8b6bd90a1b5daad14755f1bb151869 (diff)
downloadsqlite-27436af790273ce50212fd67473f03b0c99bb63b.tar.gz
sqlite-27436af790273ce50212fd67473f03b0c99bb63b.zip
Compile-time option to use only 32-bit integers. (CVS 3157)
FossilOrigin-Name: aedadfc3e47efa28ff81d7789b54fba9fcc128db
Diffstat (limited to 'src/printf.c')
-rw-r--r--src/printf.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/printf.c b/src/printf.c
index 801db5a83..4e1de1af7 100644
--- a/src/printf.c
+++ b/src/printf.c
@@ -224,7 +224,7 @@ static int vxprintf(
etByte flag_long; /* True if "l" flag is present */
etByte flag_longlong; /* True if the "ll" flag is present */
etByte done; /* Loop termination flag */
- UINT64_TYPE longvalue; /* Value for integer types */
+ sqlite_uint64 longvalue; /* Value for integer types */
LONGDOUBLE_TYPE realvalue; /* Value for real types */
const et_info *infop; /* Pointer to the appropriate info structure */
char buf[etBUFSIZE]; /* Conversion buffer */