diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/func.c | 3 | ||||
-rw-r--r-- | src/vdbetrace.c | 2 | ||||
-rw-r--r-- | src/wherecode.c | 6 |
3 files changed, 6 insertions, 5 deletions
diff --git a/src/func.c b/src/func.c index 2bb9a91de..b46578a40 100644 --- a/src/func.c +++ b/src/func.c @@ -865,7 +865,8 @@ static void likeFunc( #ifdef SQLITE_TEST sqlite3_like_count++; #endif - sqlite3_result_int(context, patternCompare(zB, zA, pInfo, escape)==SQLITE_MATCH); + sqlite3_result_int(context, + patternCompare(zB, zA, pInfo, escape)==SQLITE_MATCH); } } diff --git a/src/vdbetrace.c b/src/vdbetrace.c index 7b4736399..c993d9a3d 100644 --- a/src/vdbetrace.c +++ b/src/vdbetrace.c @@ -82,7 +82,7 @@ char *sqlite3VdbeExpandSql( Mem *pVar; /* Value of a host parameter */ StrAccum out; /* Accumulate the output here */ #ifndef SQLITE_OMIT_UTF16 - Mem utf8; /* Used to convert UTF16 parameters into UTF8 for display */ + Mem utf8; /* Used to convert UTF16 into UTF8 for display */ #endif char zBase[100]; /* Initial working space */ diff --git a/src/wherecode.c b/src/wherecode.c index 528aeec2b..30ff3f25c 100644 --- a/src/wherecode.c +++ b/src/wherecode.c @@ -1070,9 +1070,9 @@ static int whereIndexExprTransNode(Walker *p, Expr *pExpr){ } /* -** For an indexes on expression X, locate every instance of expression X in pExpr -** and change that subexpression into a reference to the appropriate column of -** the index. +** For an indexes on expression X, locate every instance of expression X +** in pExpr and change that subexpression into a reference to the appropriate +** column of the index. */ static void whereIndexExprTrans( Index *pIdx, /* The Index */ |