fix(l0-transport): remove incorrect const qualifier from LWFFrame.deinit()
This commit is contained in:
parent
3d00e1a38e
commit
02570ab88b
|
|
@ -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);
|
allocator.free(self.payload);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue