Use sqlite3_int64, not sqlite_in64, consistently in the documentation.

Ticket #2680. (CVS 4448)

FossilOrigin-Name: f7a2647033817c73f40010e145e4c29173a55689
This commit is contained in:
drh 2007-10-01 13:54:11 +00:00
parent 98c948048b
commit 7a64b6a31c
3 changed files with 12 additions and 12 deletions

View File

@ -1,5 +1,5 @@
C Fix\scomment\stypos\sin\ssqlite3.h.\s\sTicket\s#2666.\s(CVS\s4447)
D 2007-10-01T13:50:32
C Use\ssqlite3_int64,\snot\ssqlite_in64,\sconsistently\sin\sthe\sdocumentation.\nTicket\s#2680.\s(CVS\s4448)
D 2007-10-01T13:54:11
F Makefile.in cbfb898945536a8f9ea8b897e1586dd1fdbcc5db
F Makefile.linux-gcc 65241babba6faf1152bf86574477baab19190499
F README 9c4e2d6706bdcc3efdd773ce752a8cdab4f90028
@ -522,7 +522,7 @@ F tool/space_used.tcl f714c41a59e326b8b9042f415b628b561bafa06b
F tool/spaceanal.tcl f60a242a996a79d59cad6615cec83a9203e17911
F tool/speedtest.tcl 06c76698485ccf597b9e7dbb1ac70706eb873355
F tool/speedtest2.tcl ee2149167303ba8e95af97873c575c3e0fab58ff
F www/34to35.tcl daa7103b7b5f6820b860600fc2a83bca639a38b7
F www/34to35.tcl 942e479aa7740b55d714dce0f0b2cb6ca91c3f20
F www/arch.fig d5f9752a4dbf242e9cfffffd3f5762b6c63b3bcf
F www/arch.gif f845a64772062e82d17980a349f95f1f0b4c8054
F www/arch.png 82ef36db1143828a7abc88b1e308a5f55d4336f4
@ -580,7 +580,7 @@ F www/tclsqlite.tcl 8be95ee6dba05eabcd27a9d91331c803f2ce2130
F www/vdbe.tcl 87a31ace769f20d3627a64fa1fade7fed47b90d0
F www/version3.tcl 890248cf7b70e60c383b0e84d77d5132b3ead42b
F www/whentouse.tcl fc46eae081251c3c181bd79c5faef8195d7991a5
P b2befc84c360dde42c6dd10cbcc9572e37852438
R 61b9261456fdf23a3bea36b5be3aa692
P 2ea278a2af5b3e94acf5321375cc33d1f58c3885
R 10234e35c55ebb7cc1a589b85e057057
U drh
Z c11ca39a98011f94ac40ccbbcd3220a3
Z 95a357bae5d66d1094c1b4e9a6c1a843

View File

@ -1 +1 @@
2ea278a2af5b3e94acf5321375cc33d1f58c3885
f7a2647033817c73f40010e145e4c29173a55689

View File

@ -1,7 +1,7 @@
#
# Run this TCL script to generate HTML for the goals.html file.
#
set rcsid {$Id: 34to35.tcl,v 1.3 2007/09/03 20:32:45 drh Exp $}
set rcsid {$Id: 34to35.tcl,v 1.4 2007/10/01 13:54:11 drh Exp $}
source common.tcl
header {SQLite Changes From Version 3.4.2 To 3.5.0}
@ -551,11 +551,11 @@ typedef struct sqlite3_io_methods sqlite3_io_methods;
struct sqlite3_io_methods {
int iVersion;
int (*xClose)(sqlite3_file*);
int (*xRead)(sqlite3_file*, void*, int iAmt, sqlite_int64 iOfst);
int (*xWrite)(sqlite3_file*, const void*, int iAmt, sqlite_int64 iOfst);
int (*xTruncate)(sqlite3_file*, sqlite_int64 size);
int (*xRead)(sqlite3_file*, void*, int iAmt, sqlite3_int64 iOfst);
int (*xWrite)(sqlite3_file*, const void*, int iAmt, sqlite3_int64 iOfst);
int (*xTruncate)(sqlite3_file*, sqlite3_int64 size);
int (*xSync)(sqlite3_file*, int flags);
int (*xFileSize)(sqlite3_file*, sqlite_int64 *pSize);
int (*xFileSize)(sqlite3_file*, sqlite3_int64 *pSize);
int (*xLock)(sqlite3_file*, int);
int (*xUnlock)(sqlite3_file*, int);
int (*xCheckReservedLock)(sqlite3_file*);