projects
/
pspp
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
bc45343
)
rust: Fix typo in light detail reader.
author
Ben Pfaff
<blp@cs.stanford.edu>
Mon, 12 Jan 2026 02:53:31 +0000
(18:53 -0800)
committer
Ben Pfaff
<blp@cs.stanford.edu>
Mon, 12 Jan 2026 02:53:31 +0000
(18:53 -0800)
Fixes a warning about invalid horizontal alignment.
rust/pspp/src/spv/read/light.rs
patch
|
blob
|
history
diff --git
a/rust/pspp/src/spv/read/light.rs
b/rust/pspp/src/spv/read/light.rs
index a3fa07db278562dd36675d3142e1533bc654a422..24554b6f7b989bc334a1f4daf8835098a06f931c 100644
(file)
--- 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),
- 6
14
73 => None,
+ 6
41
73 => None,
_ => {
warn(LightWarning::InvalidHorizontalAlignment {
index,