Fix a comment in sqlite3.h. No code changes. Ticket #1093. (CVS 2308)

FossilOrigin-Name: d1ea2fb70be905947c8ff74da8e1f719a8fb85f5
This commit is contained in:
danielk1977 2005-02-02 01:13:38 +00:00
parent d0a6932f70
commit 99b214d28e
3 changed files with 9 additions and 9 deletions

View File

@ -1,5 +1,5 @@
C Handle\s"rowid<=X\sORDER\sBY\srowid\sDESC"\swhere\sX\sis\san\sinteger.\sFix\sfor\sticket\s#1092.\s(CVS\s2307)
D 2005-02-02T01:10:45
C Fix\sa\scomment\sin\ssqlite3.h.\sNo\scode\schanges.\sTicket\s#1093.\s(CVS\s2308)
D 2005-02-02T01:13:38
F Makefile.in ffd81f5e926d40b457071b4de8d7c1fa18f39b5a
F Makefile.linux-gcc a9e5a0d309fa7c38e7c14d3ecf7690879d3a5457
F README a01693e454a00cc117967e3f9fdab2d4d52e9bc1
@ -60,7 +60,7 @@ F src/printf.c 3d20b21cfecadacecac3fb7274e746cb81d3d357
F src/random.c eff68e3f257e05e81eae6c4d50a51eb88beb4ff3
F src/select.c fee51a0d40f1b56d1157f49f9f0fe7fc5af38769
F src/shell.c 1f0da77ef0520afd6df71f4781076021874310f3
F src/sqlite.h.in 7d7c28344e2bd770491b56ed9169be20859c707d
F src/sqlite.h.in 2a2cb0131cdbd3fe2082de3261efe0ef002e6816
F src/sqliteInt.h 96790021c6610fb4016ac710a28282f006321bc1
F src/table.c 25b3ff2b39b7d87e8d4a5da0713d68dfc06cbee9
F src/tclsqlite.c 101994a2c4c0eaa69f1de9bfe4a02167f6049e7d
@ -272,7 +272,7 @@ F www/tclsqlite.tcl e73f8f8e5f20e8277619433f7970060ab01088fc
F www/vdbe.tcl 095f106d93875c94b47367384ebc870517431618
F www/version3.tcl 092a01f5ef430d2c4acc0ae558d74c4bb89638a0
F www/whentouse.tcl 3e522a06ad41992023c80ca29a048ae2331ca5bd
P 2e1c71c4686472c6ee277f8928320095bc27846d
R 6c735aca5d3f31f26563362e6436cbfe
P 506088796c846243e24c4cba6be4ce6511fdb345
R 0ba2e9f3b7d1ba33d703d526a858f307
U danielk1977
Z 80afbda16d1626e406aa81b873ee8b5d
Z a1ecd87fa80c4e91a7bb3da07993c58a

View File

@ -1 +1 @@
506088796c846243e24c4cba6be4ce6511fdb345
d1ea2fb70be905947c8ff74da8e1f719a8fb85f5

View File

@ -12,7 +12,7 @@
** This header file defines the interface that the SQLite library
** presents to client programs.
**
** @(#) $Id: sqlite.h.in,v 1.128 2005/01/22 03:03:54 drh Exp $
** @(#) $Id: sqlite.h.in,v 1.129 2005/02/02 01:13:38 danielk1977 Exp $
*/
#ifndef _SQLITE3_H_
#define _SQLITE3_H_
@ -309,7 +309,7 @@ int sqlite3_busy_timeout(sqlite3*, int ms);
** pass the result data pointer to sqlite3_free_table() in order to
** release the memory that was malloc-ed. Because of the way the
** malloc() happens, the calling function must not try to call
** malloc() directly. Only sqlite3_free_table() is able to release
** free() directly. Only sqlite3_free_table() is able to release
** the memory properly and safely.
**
** The return value of this routine is the same as from sqlite3_exec().