diff options
author | shane <shane@noemail.net> | 2009-03-05 04:20:31 +0000 |
---|---|---|
committer | shane <shane@noemail.net> | 2009-03-05 04:20:31 +0000 |
commit | be21779385d54062ff3b75c2e4881c986d7798a5 (patch) | |
tree | 93f4b028f27c7fc03bf78fbbc9b0d17d0e23e8a6 /src/malloc.c | |
parent | c0688ea1728706ba6812f9b21384ad413a09eca2 (diff) | |
download | sqlite-be21779385d54062ff3b75c2e4881c986d7798a5.tar.gz sqlite-be21779385d54062ff3b75c2e4881c986d7798a5.zip |
Corrected typos and misspellings. Ticket #3702. (CVS 6336)
FossilOrigin-Name: 6404afa0c515a6536fc2e878d4fb451e4dc06942
Diffstat (limited to 'src/malloc.c')
-rw-r--r-- | src/malloc.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/malloc.c b/src/malloc.c index ecbef4f80..dc111ba36 100644 --- a/src/malloc.c +++ b/src/malloc.c @@ -12,7 +12,7 @@ ** ** Memory allocation functions used throughout sqlite. ** -** $Id: malloc.c,v 1.57 2009/02/19 20:50:15 drh Exp $ +** $Id: malloc.c,v 1.58 2009/03/05 04:20:32 shane Exp $ */ #include "sqliteInt.h" #include <stdarg.h> @@ -691,10 +691,10 @@ void sqlite3SetString(char **pz, sqlite3 *db, const char *zFormat, ...){ ** sqlite3_realloc. ** ** The returned value is normally a copy of the second argument to this -** function. However, if a malloc() failure has occured since the previous +** function. However, if a malloc() failure has occurred since the previous ** invocation SQLITE_NOMEM is returned instead. ** -** If the first argument, db, is not NULL and a malloc() error has occured, +** If the first argument, db, is not NULL and a malloc() error has occurred, ** then the connection error-code (the value returned by sqlite3_errcode()) ** is set to SQLITE_NOMEM. */ |