aboutsummaryrefslogtreecommitdiff
path: root/src/lib
diff options
context:
space:
mode:
authorChristian C <cc@localhost>2025-03-06 16:11:39 -0800
committerChristian C <cc@localhost>2025-03-06 16:11:39 -0800
commit05c53bb909ccaa8d8aeefc62a0850664c6075cce (patch)
tree339e9ed2575ce768474e94edadf4f68bc3d2fd02 /src/lib
parentc370b4e6f56e52bef91aabfc4bb547a1be5be6f1 (diff)
Remove unused variables
Diffstat (limited to 'src/lib')
-rw-r--r--src/lib/seg/util.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/lib/seg/util.c b/src/lib/seg/util.c
index 238fa1c..8a5f5e5 100644
--- a/src/lib/seg/util.c
+++ b/src/lib/seg/util.c
@@ -122,7 +122,6 @@ uint16_t* _erode(uint16_t* mask, uint32_t width, uint32_t height)
new_mask[current_position] = mask[current_position];
continue;
}
- bool_t erode = FALSE;
size_t proposed_position;
if (x != 0) {
proposed_position = xy_to_coord(x-1, y, width, height);