Skip to content

Commit 9a92cb5

Browse files
committed
fix FixedSizeQueue.Count return type from decimal to int
1 parent 6c63da6 commit 9a92cb5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Serilog.Sinks.TCP/Splunk.Logging/FixedSizeQueue.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,6 +77,6 @@ public T Dequeue()
7777
}
7878

7979

80-
public decimal Count { get { return _collection.Count; } }
80+
public int Count { get { return _collection.Count; } }
8181
}
8282
}

0 commit comments

Comments
 (0)