Skip to content

Commit

Permalink
missing parens
Browse files Browse the repository at this point in the history
  • Loading branch information
liebman committed Sep 18, 2024
1 parent 4495c60 commit 0c8700d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion esp-hal/src/dma/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -589,7 +589,7 @@ macro_rules! dma_tx_buffer {
static mut TX_BUFFER: [u8; $tx_size] = [0u8; $tx_size];
static mut TX_DESCRIPTORS: [$crate::dma::DmaDescriptor; TX_DESCRIPTOR_LEN] =
[$crate::dma::DmaDescriptor::EMPTY; TX_DESCRIPTOR_LEN];
let tx_buffer, tx_descriptors = unsafe {
let (tx_buffer, tx_descriptors) = unsafe {
(
&mut TX_BUFFER,
&mut TX_DESCRIPTORS,
Expand Down

0 comments on commit 0c8700d

Please sign in to comment.