Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion libraries/sqlite/shell.c
Original file line number Diff line number Diff line change
Expand Up @@ -2726,7 +2726,7 @@ static int shell_exec(
if( zStmtSql==0 ) zStmtSql = "";
while( IsSpace(zStmtSql[0]) ) zStmtSql++;

/* save off the prepared statment handle and reset row count */
/* save off the prepared statement handle and reset row count */
if( pArg ){
pArg->pStmt = pStmt;
pArg->cnt = 0;
Expand Down
2 changes: 1 addition & 1 deletion libraries/sqlite/sqlite3.c
Original file line number Diff line number Diff line change
Expand Up @@ -118842,7 +118842,7 @@ SQLITE_PRIVATE void sqlite3SelectWrongNumTermsError(Parse *pParse, Select *p){

/*
** Code an output subroutine for a coroutine implementation of a
** SELECT statment.
** SELECT statement.
**
** The data to be output is contained in pIn->iSdst. There are
** pIn->nSdst columns to be output. pDest is where the output should
Expand Down