fix(l0-transport): remove incorrect const qualifier from LWFFrame.deinit()

This commit is contained in:
Markus Maiwald 2026-02-09 00:07:17 +01:00
parent 3d00e1a38e
commit 02570ab88b
1 changed files with 1 additions and 1 deletions

View File

@ -267,7 +267,7 @@ pub const LWFFrame = struct {
};
}
pub fn deinit(self: *const LWFFrame, allocator: std.mem.Allocator) void {
pub fn deinit(self: *LWFFrame, allocator: std.mem.Allocator) void {
allocator.free(self.payload);
}