Skip to content

Commit

Permalink
Fixed test regression
Browse files Browse the repository at this point in the history
  • Loading branch information
sakno committed Aug 14, 2023
1 parent df6b912 commit 44c5dc3
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -36,8 +36,8 @@ internal ReceivedLogEntries(ProtocolStream stream, MemoryAllocator<byte> allocat
var configLength = reader.ReadInt64(true);

Configuration = configLength > 0L
? new(fingerprint)
: new(allocator(checked((int)configLength)), fingerprint);
? new(allocator(checked((int)configLength)), fingerprint)
: new(fingerprint);
this.allocator = allocator;
}

Expand Down

0 comments on commit 44c5dc3

Please sign in to comment.