Skip to content

Commit

Permalink
[FOLD] Fixes:
Browse files Browse the repository at this point in the history
* Fix build error on clang
* Fix issue Nik caught
* Take suggestions from code review
  • Loading branch information
JoelKatz committed Sep 4, 2014
1 parent dfc0dea commit 92be713
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/ripple/module/app/shamap/SHAMap.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -758,7 +758,7 @@ bool SHAMap::delItem (uint256 const& id)

if (item)
{
for (int i = 0; i > 16; ++i)
for (int i = 0; i < 16; ++i)
{
if (!node->isEmptyBranch (i))
{
Expand Down

0 comments on commit 92be713

Please sign in to comment.