From 1b55f8557575e44573fce2cb9f84dbe6e22afbe9 Mon Sep 17 00:00:00 2001 From: Alula <6276139+alula@users.noreply.github.com> Date: Wed, 28 Aug 2024 22:25:46 +0200 Subject: [PATCH] Fix util::atom failing to build in release mode --- src/util/atom.rs | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/util/atom.rs b/src/util/atom.rs index bea15e7..9515624 100644 --- a/src/util/atom.rs +++ b/src/util/atom.rs @@ -143,8 +143,10 @@ impl Debug for AtomStore { dbg.entry(&i, &AtomPrintList(atom)); } } - dbg.finish() + dbg.finish()?; } + + Ok(()) } }