diff options
author | drh <drh@noemail.net> | 2011-03-06 21:28:32 +0000 |
---|---|---|
committer | drh <drh@noemail.net> | 2011-03-06 21:28:32 +0000 |
commit | c126e63e4fda95f47ffe1cb294b5417c7a46c223 (patch) | |
tree | 65b7a94b2892db277a1111c79ae476b444767043 /src/btree.c | |
parent | d7255a207eab440617f4603b016350f075a9bf8b (diff) | |
download | sqlite-c126e63e4fda95f47ffe1cb294b5417c7a46c223.tar.gz sqlite-c126e63e4fda95f47ffe1cb294b5417c7a46c223.zip |
Remove dead code identified by the clang static analyzer.
FossilOrigin-Name: 01a79d5a7af48fb7e50291c0c7c6283d3fb359d0
Diffstat (limited to 'src/btree.c')
-rw-r--r-- | src/btree.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/btree.c b/src/btree.c index f5960da38..fa0889adb 100644 --- a/src/btree.c +++ b/src/btree.c @@ -6179,9 +6179,7 @@ static int balance_nonroot( } } if( minI>i ){ - int t; MemPage *pT; - t = apNew[i]->pgno; pT = apNew[i]; apNew[i] = apNew[minI]; apNew[minI] = pT; |