From df3913008221648897800950eb80473a121269d8 Mon Sep 17 00:00:00 2001 From: Adam Ierymenko Date: Thu, 23 Feb 2023 10:30:24 -0500 Subject: [PATCH] layout tweak --- utils/src/ringbuffermap.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/utils/src/ringbuffermap.rs b/utils/src/ringbuffermap.rs index b6a6882af..c438bb642 100644 --- a/utils/src/ringbuffermap.rs +++ b/utils/src/ringbuffermap.rs @@ -108,8 +108,8 @@ struct Entry { /// buckets in the hash table. The maximum for both these parameters is 65535. This could be /// increased by making the index variables larger (e.g. u32 instead of u16). pub struct RingBufferMap { - salt: u32, entries: [Entry; C], + salt: u32, buckets: [u16; B], entry_ptr: u16, }