diff options
author | drh <drh@noemail.net> | 2020-08-27 20:55:54 +0000 |
---|---|---|
committer | drh <drh@noemail.net> | 2020-08-27 20:55:54 +0000 |
commit | 04cd60e18cc6bae970197d5ec799903bea16412b (patch) | |
tree | c16a9c22adb5a9981451242339a787eb1269f8a6 /src | |
parent | 92e21ef0796e797b831a9f6b2e5edb0bd5c21442 (diff) | |
download | sqlite-04cd60e18cc6bae970197d5ec799903bea16412b.tar.gz sqlite-04cd60e18cc6bae970197d5ec799903bea16412b.zip |
Remove a (harmless) redundant variable from the CLI implementation.
FossilOrigin-Name: 3f7bbb840de0a9b1ca89288805cb151aea6fcb82efda9ba39f51abf1b17c070b
Diffstat (limited to 'src')
-rw-r--r-- | src/shell.c.in | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/shell.c.in b/src/shell.c.in index d70ee318b..aef7e85d3 100644 --- a/src/shell.c.in +++ b/src/shell.c.in @@ -7586,7 +7586,6 @@ static int do_meta_command(char *zLine, ShellState *p){ char **azName = 0; int nName = 0; sqlite3_stmt *pStmt; - int rc; int i; open_db(p, 0); rc = sqlite3_prepare_v2(p->db, "PRAGMA database_list", -1, &pStmt, 0); |