Skip to content

Commit

Permalink
Fix a harmless compiler warning.
Browse files Browse the repository at this point in the history
FossilOrigin-Name: b2534d8de5051a3516f4b9ee5a4b99e1dcf455e9af88c60815d2c2a479fc8566
  • Loading branch information
drh committed Feb 19, 2023
1 parent 1603f7e commit e17cac1
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
12 changes: 6 additions & 6 deletions manifest
@@ -1,5 +1,5 @@
C Fix\sstale\srequirement\smarks\sand\sfix\sa\stypo\sin\sthe\sdocumentation\sfor\nsqlite3_preupdate_hook().
D 2023-02-18T20:31:26.492
C Fix\sa\sharmless\scompiler\swarning.
D 2023-02-19T19:16:51.589
F .fossil-settings/empty-dirs dbb81e8fc0401ac46a1491ab34a7f2c7c0452f2f06b54ebb845d024ca8283ef1
F .fossil-settings/ignore-glob 35175cdfcf539b2318cb04a9901442804be81cd677d8b889fcc9149c21f239ea
F LICENSE.md df5091916dbb40e6e9686186587125e1b2ff51f022cc334e886c19a0e9982724
Expand Down Expand Up @@ -706,7 +706,7 @@ F src/vxworks.h d2988f4e5a61a4dfe82c6524dd3d6e4f2ce3cdb9
F src/wal.c b9df133a705093da8977da5eb202eaadb844839f1c7297c08d33471f5491843d
F src/wal.h c3aa7825bfa2fe0d85bef2db94655f99870a285778baa36307c0a16da32b226a
F src/walker.c f890a3298418d7cba3b69b8803594fdc484ea241206a8dfa99db6dd36f8cbb3b
F src/where.c 5b20d08699c9a55c0556661ff6f937dd1c8e27567b7553e48d477d3fad22ec4c
F src/where.c 38c36bb654b4172148aef3b295bbbc1342b52078cf20174f771c746caa98f69a
F src/whereInt.h e25203e5bfee149f5f1225ae0166cfb4f1e65490c998a024249e98bb0647377c
F src/wherecode.c b82d0d33315e1526904b95155e55e61149c4462147668e1cc4567c812735eff1
F src/whereexpr.c a60a1f88650c561eded95c5affbe846cda71fac35033e1280f28e47934df33c8
Expand Down Expand Up @@ -2045,8 +2045,8 @@ F vsixtest/vsixtest.tcl 6a9a6ab600c25a91a7acc6293828957a386a8a93
F vsixtest/vsixtest.vcxproj.data 2ed517e100c66dc455b492e1a33350c1b20fbcdc
F vsixtest/vsixtest.vcxproj.filters 37e51ffedcdb064aad6ff33b6148725226cd608e
F vsixtest/vsixtest_TemporaryKey.pfx e5b1b036facdb453873e7084e1cae9102ccc67a0
P 315574d5cbe5c805ff2163052d986b054985984fb45bfb064d1a7b39a22b90eb
R 68f946e70175917ceaa3524db0cdae27
P 655991f5d9afdd3281049eb430921046e0ba90eef215020c2fb149adc0d3c4c5
R 2d810a0c2a1af010fb7d146538472f04
U drh
Z 5037326c30e7dd9c662d141b97c2f282
Z f85648380fefb71aac040b10e003df7f
# Remove this line to create a well-formed Fossil manifest.
2 changes: 1 addition & 1 deletion manifest.uuid
@@ -1 +1 @@
655991f5d9afdd3281049eb430921046e0ba90eef215020c2fb149adc0d3c4c5
b2534d8de5051a3516f4b9ee5a4b99e1dcf455e9af88c60815d2c2a479fc8566
2 changes: 1 addition & 1 deletion src/where.c
Expand Up @@ -2123,7 +2123,7 @@ static int whereInScanEst(
}

if( rc==SQLITE_OK ){
if( nRowEst > nRow0 ) nRowEst = nRow0;
if( nRowEst > (tRowcnt)nRow0 ) nRowEst = nRow0;
*pnRow = nRowEst;
WHERETRACE(0x20,("IN row estimate: est=%d\n", nRowEst));
}
Expand Down

0 comments on commit e17cac1

Please sign in to comment.