aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authormistachkin <mistachkin@noemail.net>2014-09-18 18:55:47 +0000
committermistachkin <mistachkin@noemail.net>2014-09-18 18:55:47 +0000
commit26c79a060b2e7fdf6d05585a3b44d0498df3fe1c (patch)
tree3bc3fa1cdb87de849d3ddaae3eeedb8cbb870206 /src
parent74eaba4de25d955314df279e5ca27aa24f2698ea (diff)
downloadsqlite-26c79a060b2e7fdf6d05585a3b44d0498df3fe1c.tar.gz
sqlite-26c79a060b2e7fdf6d05585a3b44d0498df3fe1c.zip
Correct typos in comments. No changes to code.
FossilOrigin-Name: 55879932116d373c95a5f32ec44b53a9c3f4db24
Diffstat (limited to 'src')
-rw-r--r--src/vdbeInt.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/vdbeInt.h b/src/vdbeInt.h
index fb05e9aed..8e4405437 100644
--- a/src/vdbeInt.h
+++ b/src/vdbeInt.h
@@ -162,7 +162,7 @@ struct VdbeFrame {
*/
struct Mem {
union MemValue {
- double r; /* Real value used when MEM_Realis set in flags */
+ double r; /* Real value used when MEM_Real is set in flags */
i64 i; /* Integer value used when MEM_Int is set in flags */
int nZero; /* Used when bit MEM_Zero is set in flags */
FuncDef *pDef; /* Used only when flags==MEM_Agg */
@@ -268,13 +268,13 @@ struct AuxData {
*/
struct sqlite3_context {
Mem *pOut; /* The return value is stored here */
- FuncDef *pFunc; /* Pointer to function information. MUST BE FIRST */
+ FuncDef *pFunc; /* Pointer to function information */
Mem *pMem; /* Memory cell used to store aggregate context */
CollSeq *pColl; /* Collating sequence */
Vdbe *pVdbe; /* The VM that owns this context */
int iOp; /* Instruction number of OP_Function */
int isError; /* Error code returned by the function. */
- u8 skipFlag; /* Skip skip accumulator loading if true */
+ u8 skipFlag; /* Skip accumulator loading if true */
u8 fErrorOrAux; /* isError!=0 or pVdbe->pAuxData modified */
};