1
0
mirror of https://github.com/sqlite/sqlite.git synced 2025-08-08 14:02:16 +03:00

Remove an unused parameter from a function in vdbesort.c. Fix some comments and other details in the same file.

FossilOrigin-Name: 1a8498d8037a1b93e56951bbdbb76291bd5a4f87
This commit is contained in:
dan
2011-08-12 16:11:43 +00:00
parent 689ab89781
commit e6f7bc6379
5 changed files with 65 additions and 49 deletions

View File

@@ -4093,7 +4093,7 @@ case OP_RowData: {
if( isSorter(pC) ){
assert( pOp->opcode==OP_RowKey );
rc = sqlite3VdbeSorterRowkey(db, pC, pOut);
rc = sqlite3VdbeSorterRowkey(pC, pOut);
break;
}