From 98087078ddc9770f46257b7f905b902679433e40 Mon Sep 17 00:00:00 2001 From: Darrell Anderson Date: Sun, 16 Feb 2014 14:32:35 -0600 Subject: [PATCH] Fix unintended renaming --- kexi/3rdparty/kexisql3/src/vdbe.c | 2 +- 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 e70c0d2df..6153ac77b 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 && inCursor ); 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 4c732b09d..9e4637056 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.