Skip to content

Commit 9a6f84c

Browse files
committed
fixes
1 parent 6dfbe46 commit 9a6f84c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

stress/src/metrics_histogram.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ thread_local! {
4848
fn main() {
4949
match std::env::args().find(|arg| arg == "--per-thread") {
5050
None => throughput::test_throughput(test_histogram_shared),
51-
Some(_) => throughput::test_throughput(test_histogram_per_thread)
51+
Some(_) => throughput::test_throughput(test_histogram_per_thread),
5252
}
5353
}
5454

@@ -57,7 +57,7 @@ fn test_histogram_shared() {
5757
}
5858

5959
fn test_histogram_per_thread() {
60-
HISTOGRAM_PER_THREAD.with(|h|test_histogram(h));
60+
HISTOGRAM_PER_THREAD.with(|h| test_histogram(h));
6161
}
6262

6363
fn test_histogram(histogram: &Histogram<u64>) {

0 commit comments

Comments
 (0)