diff options
author | larrybr <larrybr@noemail.net> | 2021-04-04 12:52:58 +0000 |
---|---|---|
committer | larrybr <larrybr@noemail.net> | 2021-04-04 12:52:58 +0000 |
commit | dabada6020f6ec10d43b40c73e35522f20c63da7 (patch) | |
tree | 7b2120078355e5af8604803ea618aa9624780f0a /src/expr.c | |
parent | 57f90189a551638129bcaf207814859baa4af5b2 (diff) | |
download | sqlite-dabada6020f6ec10d43b40c73e35522f20c63da7.tar.gz sqlite-dabada6020f6ec10d43b40c73e35522f20c63da7.zip |
Make shell .parameter feature type-agnostic. Hush harmless compiler warning.
FossilOrigin-Name: 35cf295e026d067c9f059fde6b150e65163fe171d37501eb1e5742e691793340
Diffstat (limited to 'src/expr.c')
-rw-r--r-- | src/expr.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/expr.c b/src/expr.c index ac0f4073f..63053547d 100644 --- a/src/expr.c +++ b/src/expr.c @@ -1677,7 +1677,7 @@ Select *sqlite3SelectDup(sqlite3 *db, Select *p, int flags){ ** NULL is returned. If non-NULL is returned, then it is guaranteed ** that the new entry was successfully appended. */ -static const struct ExprList_item zeroItem; +static const struct ExprList_item zeroItem = {0}; SQLITE_NOINLINE ExprList *sqlite3ExprListAppendNew( sqlite3 *db, /* Database handle. Used for memory allocation */ Expr *pExpr /* Expression to be appended. Might be NULL */ |