diff options
| author | Christian Cunningham <c@localhost> | 2022-08-24 18:34:24 -0700 |
|---|---|---|
| committer | Christian Cunningham <c@localhost> | 2022-08-24 18:34:24 -0700 |
| commit | 48bbaa57a2972ce4751443e2e1f3d085ef9d87c2 (patch) | |
| tree | a236031a0616040d1575c84a40d20555b6ae0d64 /src/util/fifo_queue.rs | |
| parent | e746ab10da35e5d9ef957c72adf9a3ec7a7df225 (diff) | |
Fix macro
Diffstat (limited to 'src/util/fifo_queue.rs')
| -rw-r--r-- | src/util/fifo_queue.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/util/fifo_queue.rs b/src/util/fifo_queue.rs index 0f1f737..779bc9d 100644 --- a/src/util/fifo_queue.rs +++ b/src/util/fifo_queue.rs @@ -15,7 +15,7 @@ use core::fmt::{Debug, Formatter}; #[macro_export] macro_rules! init_fifo_queue { ($name:tt,$size:tt,$default:tt,$type:ty) => { - init_queue!{@gen [$name,$size,$default,$type,concat!("# ", stringify!($type), " Queue Allocator")]} + init_fifo_queue!{@gen [$name,$size,$default,$type,concat!("# ", stringify!($type), " Queue Allocator")]} }; (@gen [$name:tt,$size:tt,$default:tt,$type:ty,$doc:expr]) => { #[doc = $doc] |
