aboutsummaryrefslogtreecommitdiff
path: root/src/vdbeapi.c
diff options
context:
space:
mode:
authordrh <drh@noemail.net>2013-03-28 01:19:26 +0000
committerdrh <drh@noemail.net>2013-03-28 01:19:26 +0000
commit8dd661aad1aef278588dcc1981f1b7bde62554b0 (patch)
tree064d3583e25961d46062e458d62d3f87eae9f749 /src/vdbeapi.c
parent1ffe7c7fab56b93f291abfe474a6a1995421e5fb (diff)
parent4b11bad35824c3f4f56e3d1560908a43d074443a (diff)
downloadsqlite-8dd661aad1aef278588dcc1981f1b7bde62554b0.tar.gz
sqlite-8dd661aad1aef278588dcc1981f1b7bde62554b0.zip
Merge the changes for the 3.7.16.1 release candidate into the sessions branch.
FossilOrigin-Name: ee35a89712b8ea9f4e70d61a29150348896b519f
Diffstat (limited to 'src/vdbeapi.c')
-rw-r--r--src/vdbeapi.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/vdbeapi.c b/src/vdbeapi.c
index 1264aedd4..79827b7f9 100644
--- a/src/vdbeapi.c
+++ b/src/vdbeapi.c
@@ -445,7 +445,7 @@ end_of_step:
assert( p->rc!=SQLITE_ROW && p->rc!=SQLITE_DONE );
if( p->isPrepareV2 && rc!=SQLITE_ROW && rc!=SQLITE_DONE ){
/* If this statement was prepared using sqlite3_prepare_v2(), and an
- ** error has occured, then return the error code in p->rc to the
+ ** error has occurred, then return the error code in p->rc to the
** caller. Set the error code in the database handle to the same value.
*/
rc = sqlite3VdbeTransferError(p);