Skip to content

Commit 8d80ee2

Browse files
authored
fix typo (#380)
1 parent 67d717b commit 8d80ee2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

BitFaster.Caching/Lru/ConcurrentLruCore.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -584,7 +584,7 @@ private void LastWarmToCold()
584584
{
585585
Interlocked.Decrement(ref this.counter.warm);
586586

587-
if (this.hotQueue.TryDequeue(out var item))
587+
if (this.warmQueue.TryDequeue(out var item))
588588
{
589589
this.Move(item, ItemDestination.Cold, ItemRemovedReason.Evicted);
590590
}

0 commit comments

Comments
 (0)