diff options
Diffstat (limited to 'kexi/3rdparty')
-rw-r--r-- | kexi/3rdparty/kexisql3/src/vdbe.c | 2 | ||||
-rw-r--r-- | kexi/3rdparty/kexisql3/src/vdbeInt.h | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/kexi/3rdparty/kexisql3/src/vdbe.c b/kexi/3rdparty/kexisql3/src/vdbe.c index e70c0d2d..6153ac77 100644 --- a/kexi/3rdparty/kexisql3/src/vdbe.c +++ b/kexi/3rdparty/kexisql3/src/vdbe.c @@ -3020,7 +3020,7 @@ case OP_Sequence: { assert( i>=0 && i<p->nCursor ); assert( p->apCsr[i]!=0 ); pTos++; - pTos->i = p->apCsr[i]->setqCount++; + pTos->i = p->apCsr[i]->setCount++; pTos->flags = MEM_Int; break; } diff --git a/kexi/3rdparty/kexisql3/src/vdbeInt.h b/kexi/3rdparty/kexisql3/src/vdbeInt.h index 4c732b09..9e463705 100644 --- a/kexi/3rdparty/kexisql3/src/vdbeInt.h +++ b/kexi/3rdparty/kexisql3/src/vdbeInt.h @@ -81,7 +81,7 @@ struct Cursor { u8 *pIncrKey; /* Pointer to pKeyInfo->incrKey */ KeyInfo *pKeyInfo; /* Info about index keys needed by index cursors */ int nField; /* Number of fields in the header */ - i64 setqCount; /* Sequence counter */ + i64 setCount; /* Sequence counter */ /* Cached information about the header for the data record that the ** cursor is currently pointing to. Only valid if cacheValid is true. |