]> git.ipfire.org Git - thirdparty/sqlite.git/commitdiff
Fix comment typos in the sqldiff.c utility program.
authordrh <drh@noemail.net>
Thu, 9 Apr 2015 13:40:18 +0000 (13:40 +0000)
committerdrh <drh@noemail.net>
Thu, 9 Apr 2015 13:40:18 +0000 (13:40 +0000)
FossilOrigin-Name: 32ab2bb990746a84f5944e3cf428fb2dff3628da

manifest
manifest.uuid
tool/sqldiff.c

index bcddd8c6613fb28317bc6328d6ae8819f0b6cd89..f4f4fa2b8853f1a6b3fdc2d63164f77bfaa10867 100644 (file)
--- a/manifest
+++ b/manifest
@@ -1,5 +1,5 @@
-C Add\sthe\s"sqldiff"\sutility\sprogram.
-D 2015-04-09T13:34:29.580
+C Fix\scomment\stypos\sin\sthe\ssqldiff.c\sutility\sprogram.
+D 2015-04-09T13:40:18.767
 F Makefile.arm-wince-mingw32ce-gcc d6df77f1f48d690bd73162294bbba7f59507c72f
 F Makefile.in 5f78b1ab81b64e7c57a75d170832443e66c0880a
 F Makefile.linux-gcc 91d710bdc4998cb015f39edf3cb314ec4f4d7e23
@@ -1239,7 +1239,7 @@ F tool/speedtest2.tcl ee2149167303ba8e95af97873c575c3e0fab58ff
 F tool/speedtest8.c 2902c46588c40b55661e471d7a86e4dd71a18224
 F tool/speedtest8inst1.c 293327bc76823f473684d589a8160bde1f52c14e
 F tool/split-sqlite3c.tcl d9be87f1c340285a3e081eb19b4a247981ed290c
-F tool/sqldiff.c 9c1c1e0aef974f1ad52aa720440a8a105d24d6f0
+F tool/sqldiff.c a28d17d824bc80940c2d67b2cf85a387c461dc97
 F tool/stack_usage.tcl f8e71b92cdb099a147dad572375595eae55eca43
 F tool/symbols-mingw.sh 4dbcea7e74768305384c9fd2ed2b41bbf9f0414d
 F tool/symbols.sh fec58532668296d7c7dc48be9c87f75ccdb5814f
@@ -1250,7 +1250,7 @@ F tool/vdbe_profile.tcl 67746953071a9f8f2f668b73fe899074e2c6d8c1
 F tool/warnings-clang.sh f6aa929dc20ef1f856af04a730772f59283631d4
 F tool/warnings.sh 0abfd78ceb09b7f7c27c688c8e3fe93268a13b32
 F tool/win/sqlite.vsix deb315d026cc8400325c5863eef847784a219a2f
-P 79861adbef8998c0f23e160543af8212d5546cd0
-R 55392413d804c3fa91206c94bb3d11f7
+P 88da5bf5d2c4f848dbd4b5ffb1539abfbbdaff18
+R df929ff4fd13763291be7acc0214ee00
 U drh
-Z a808bd48a859f116c92ef95210be5fe3
+Z 41493ba4ef878730b46175333abd9329
index 32da2f232bb489e944eae41621c1de85755206b9..91e566d27067188984767310509d34750a992478 100644 (file)
@@ -1 +1 @@
-88da5bf5d2c4f848dbd4b5ffb1539abfbbdaff18
\ No newline at end of file
+32ab2bb990746a84f5944e3cf428fb2dff3628da
\ No newline at end of file
index 9aa68caaa9a7af3828c935992b6bb12d34aa7444..2b982e914aefad34100465f74f9de3551ef510d8 100644 (file)
@@ -214,14 +214,14 @@ static void namelistFree(char **az){
 
 /*
 ** Return a list of column names for the table zDb.zTab.  Space to
-** old the list is obtained from malloc() and should released by calling
-** namelistFree() when no longer needed.
+** hold the list is obtained from sqlite3_malloc() and should released
+** using namelistFree() when no longer needed.
 **
 ** Primary key columns are listed first, followed by data columns.  The
 ** "primary key" in the previous sentence is the true primary key - the
 ** rowid or INTEGER PRIMARY KEY for ordinary tables or the declared
 ** PRIMARY KEY for WITHOUT ROWID tables.  The number of columns in the
-** primary key is returned in *pNPkey.
+** primary key is returned in *pnPkey.
 **
 ** If the table is a rowid table for which the rowid is inaccessible,
 ** then this routine returns a NULL pointer.