aboutsummaryrefslogtreecommitdiff
path: root/src/storage
diff options
context:
space:
mode:
authorNathan Reiner <nathan@nathanreiner.xyz>2025-12-17 16:01:19 +0100
committerNathan Reiner <nathan@nathanreiner.xyz>2025-12-17 16:01:19 +0100
commit2f0b09dcb4595b3a5c4204e82b1cddd511a53743 (patch)
tree38f05f0ea4b49c461946c4c6348e38ae815b8610 /src/storage
parentaa7cb18b17dc169c0b1134bfa61fe3f7809c0f1f (diff)
fix remove reorder
Diffstat (limited to 'src/storage')
-rw-r--r--src/storage/image-manager/root.zig1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/storage/image-manager/root.zig b/src/storage/image-manager/root.zig
index c99ac00..efc216f 100644
--- a/src/storage/image-manager/root.zig
+++ b/src/storage/image-manager/root.zig
@@ -130,7 +130,6 @@ pub fn delete(self: *Self, storage: *Storage, id: []const u8) !void {
storage.allocator.destroy(c);
} else if (c.index == old_index) {
c.index = idx;
- break;
}
current = c.next();