aboutsummaryrefslogtreecommitdiffstats
path: root/examples/simple/logger.rs
diff options
context:
space:
mode:
Diffstat (limited to 'examples/simple/logger.rs')
-rw-r--r--examples/simple/logger.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/simple/logger.rs b/examples/simple/logger.rs
index be9d391..9fbba77 100644
--- a/examples/simple/logger.rs
+++ b/examples/simple/logger.rs
@@ -36,7 +36,7 @@ impl fmt::Write for JoinedRingBuffer<'_> {
}
}
-static mut LB: RingBuffer<u8> = RingBuffer::<u8>::new(0);
+static mut LB: RingBuffer<u8> = RingBuffer::<u8>::new();
static mut JRB: JoinedRingBuffer = unsafe { JoinedRingBuffer::new(&LB) };
// The UART isn't necessarily Sync, so wrap it in something that