From 789adc74d41f09466c4b80443a2ec174871a2f91 Mon Sep 17 00:00:00 2001 From: Brian Pane Date: Tue, 7 Jan 2025 12:35:03 -0800 Subject: [PATCH] Change a TODO comment to a FIXME for consistency --- zlib-rs/src/deflate.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/zlib-rs/src/deflate.rs b/zlib-rs/src/deflate.rs index 0d5b922..510fabd 100644 --- a/zlib-rs/src/deflate.rs +++ b/zlib-rs/src/deflate.rs @@ -1247,7 +1247,7 @@ pub(crate) struct State<'a> { pub(crate) nice_match: usize, // Padding to maintain the grouping of fields into cache lines during refactoring - // TODO find a real field to swap into this location after the overall layout is optimized. + // FIXME find a real field to swap into this location after the overall layout is optimized. _padding_0: usize, pub(crate) strstart: usize, /* start of string to insert */