diff options
author | Darrell Anderson <[email protected]> | 2014-02-16 14:32:35 -0600 |
---|---|---|
committer | Darrell Anderson <[email protected]> | 2014-02-16 14:32:35 -0600 |
commit | 98087078ddc9770f46257b7f905b902679433e40 (patch) | |
tree | c9cbd69d27f2d6a4ce8cddfcb581a0e0a8e1d723 /kexi/3rdparty/kexisql3/src/vdbe.c | |
parent | f1ce972ed03ff76137fda623df7bb4336a8de7f0 (diff) | |
download | koffice-98087078ddc9770f46257b7f905b902679433e40.tar.gz koffice-98087078ddc9770f46257b7f905b902679433e40.zip |
Fix unintended renaming
Diffstat (limited to 'kexi/3rdparty/kexisql3/src/vdbe.c')
-rw-r--r-- | kexi/3rdparty/kexisql3/src/vdbe.c | 2 |
1 files changed, 1 insertions, 1 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; } |