From d1b571954fb13298f6b98587f05522907f064bb5 Mon Sep 17 00:00:00 2001 From: Ben Pfaff Date: Sun, 11 Jan 2026 18:53:31 -0800 Subject: [PATCH] rust: Fix typo in light detail reader. Fixes a warning about invalid horizontal alignment. --- rust/pspp/src/spv/read/light.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rust/pspp/src/spv/read/light.rs b/rust/pspp/src/spv/read/light.rs index a3fa07db27..24554b6f7b 100644 --- a/rust/pspp/src/spv/read/light.rs +++ b/rust/pspp/src/spv/read/light.rs @@ -589,7 +589,7 @@ impl Area { 0 => Some(HorzAlign::Center), 2 => Some(HorzAlign::Left), 4 => Some(HorzAlign::Right), - 61473 => None, + 64173 => None, _ => { warn(LightWarning::InvalidHorizontalAlignment { index, -- 2.30.2