diff options
author | drh <> | 2021-10-27 17:15:08 +0000 |
---|---|---|
committer | drh <> | 2021-10-27 17:15:08 +0000 |
commit | f76d28774244072344d0d7c263b7873725632770 (patch) | |
tree | 6f780e7bf0fb70b8e1aa6016e0f40ff5344672b9 /src/expr.c | |
parent | 90385ddcf182a93e4b341d415802adeb15d6a7d0 (diff) | |
download | sqlite-f76d28774244072344d0d7c263b7873725632770.tar.gz sqlite-f76d28774244072344d0d7c263b7873725632770.zip |
Fix the build for various the OMIT-everything compile-time option. No impact
on regular builds.
FossilOrigin-Name: 947805719bc8629619af5358ad50a6365c01f8d9ceabfe8e4df947696d3819b3
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 12c2ad636..7a957fe02 100644 --- a/src/expr.c +++ b/src/expr.c @@ -1748,7 +1748,7 @@ Select *sqlite3SelectDup(sqlite3 *db, const Select *pDup, int flags){ return pRet; } #else -Select *sqlite3SelectDup(sqlite3 *db, Select *p, int flags){ +Select *sqlite3SelectDup(sqlite3 *db, const Select *p, int flags){ assert( p==0 ); return 0; } |