aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authordrh <drh@noemail.net>2017-08-25 19:51:51 +0000
committerdrh <drh@noemail.net>2017-08-25 19:51:51 +0000
commitf49759bf030088bbe2cf35c5c642b6f265bb56f4 (patch)
treec5d51f4ca8757ec23b66369c2981b33d6b5bee17 /src
parent36494b8bc681cc27b145674da9bb380eeac7a371 (diff)
downloadsqlite-f49759bf030088bbe2cf35c5c642b6f265bb56f4.tar.gz
sqlite-f49759bf030088bbe2cf35c5c642b6f265bb56f4.zip
Fix a few over-length source code lines. No functional changes.
FossilOrigin-Name: 1783c54ce9dcb4b2c4f2a66f6d3315e646b71b54a8899fc32a7bf0f935a21f7f
Diffstat (limited to 'src')
-rw-r--r--src/func.c3
-rw-r--r--src/vdbetrace.c2
-rw-r--r--src/wherecode.c6
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 */