]> git.ipfire.org Git - thirdparty/sqlite.git/commitdiff
Fix a comment error. No changes to code. Ticket #1320. (CVS 2546)
authordrh <drh@noemail.net>
Sat, 9 Jul 2005 02:39:40 +0000 (02:39 +0000)
committerdrh <drh@noemail.net>
Sat, 9 Jul 2005 02:39:40 +0000 (02:39 +0000)
FossilOrigin-Name: e050af70adcdac8f9c9d8cffd1658f7fb2ebd362

manifest
manifest.uuid
src/sqlite.h.in

index dfffd19c67322f8676620e4dd62849ed4aaf6554..7daf1845353c49796cdbc7ab6e1901c8429ea938 100644 (file)
--- a/manifest
+++ b/manifest
@@ -1,5 +1,5 @@
-C Use\sthe\sinternal\ssqlite3_snprintf\sfunction\sinstead\sof\ssprintf\sto\savoid\ncross-platform\sincompatibilities.\s\sTicket\s#1316.\s(CVS\s2545)
-D 2005-07-09T02:38:06
+C Fix\sa\scomment\serror.\sNo\schanges\sto\scode.\s\sTicket\s#1320.\s(CVS\s2546)
+D 2005-07-09T02:39:40
 F Makefile.in 22ea9c0fe748f591712d8fe3c6d972c6c173a165
 F Makefile.linux-gcc 06be33b2a9ad4f005a5f42b22c4a19dab3cbb5c7
 F README 9c4e2d6706bdcc3efdd773ce752a8cdab4f90028
@@ -63,7 +63,7 @@ F src/printf.c 3d20b21cfecadacecac3fb7274e746cb81d3d357
 F src/random.c 90adff4e73a3b249eb4f1fc2a6ff9cf78c7233a4
 F src/select.c c611471052773b94af771693686bd5bcdbbb0dba
 F src/shell.c 25b3217d7c64e6497225439d261a253a23efff26
-F src/sqlite.h.in e06d5774e9cfa5962376ae988300a9f114a3e3d7
+F src/sqlite.h.in 838382ed6b48d392366a55e07f49d9d71263e1fe
 F src/sqliteInt.h af65e8fac1fe8f6f78a65551081bafd49f6e0650
 F src/table.c 25b3ff2b39b7d87e8d4a5da0713d68dfc06cbee9
 F src/tclsqlite.c cccaf6b78c290d824cf8ea089b8b27377e545830
@@ -286,7 +286,7 @@ F www/tclsqlite.tcl 425be741b8ae664f55cb1ef2371aab0a75109cf9
 F www/vdbe.tcl 87a31ace769f20d3627a64fa1fade7fed47b90d0
 F www/version3.tcl a99cf5f6d8bd4d5537584a2b342f0fb9fa601d8b
 F www/whentouse.tcl 528299b8316726dbcc5548e9aa0648c8b1bd055b
-P 0dfabca641371690027634213632c914ad6f2b8b
-R f2bd92771892506e624bc89e5334bf89
+P 431999da7bf0079e0d514483b3bfd9f8471cba7d
+R e4d720743c751a933ccdad30f4858bb6
 U drh
-Z bcbafaf71e0fe45c5282af2c97082467
+Z a3e0ae2e4608a4b92a340ee98717433c
index 053d0741c4535daa46ca2768986bcbbb73bdb4da..729dba0170851329c40779e215831171885a2ccb 100644 (file)
@@ -1 +1 @@
-431999da7bf0079e0d514483b3bfd9f8471cba7d
\ No newline at end of file
+e050af70adcdac8f9c9d8cffd1658f7fb2ebd362
\ No newline at end of file
index 84fa9ef353fa14977c96b22e942a6efae265b8f3..7457268c3b6e41befc23a86ad9f1e7e0b02cdab9 100644 (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.136 2005/06/12 22:12:39 drh Exp $
+** @(#) $Id: sqlite.h.in,v 1.137 2005/07/09 02:39:40 drh Exp $
 */
 #ifndef _SQLITE3_H_
 #define _SQLITE3_H_
@@ -1002,10 +1002,9 @@ int sqlite3_value_type(sqlite3_value*);
 void *sqlite3_aggregate_context(sqlite3_context*, int nBytes);
 
 /*
-** The pUserData parameter to the sqlite3_create_function() and
-** sqlite3_create_aggregate() routines used to register user functions
-** is available to the implementation of the function using this
-** call.
+** The pUserData parameter to the sqlite3_create_function()
+** routine used to register user functions is available to
+** the implementation of the function using this call.
 */
 void *sqlite3_user_data(sqlite3_context*);