1
Fork 0

buffer is a pointer

main
Motiejus Jakštys 2022-02-19 22:10:55 +02:00 committed by Motiejus Jakštys
parent ae2d3d5443
commit 4dbc7b03bc
1 changed files with 3 additions and 3 deletions

View File

@ -34,10 +34,10 @@ pub const UserWriter = struct {
// function makes tests easier, and removes the Shell dependency of this
// module.
const shellIndexFnType = fn ([]const u8) ?u6;
appendTo: ArrayList(u8),
appendTo: *ArrayList(u8),
shellIndexFn: shellIndexFnType,
pub fn init(appendTo: ArrayList(u8), shellIndexFn: shellIndexFnType) UserWriter {
pub fn init(appendTo: *ArrayList(u8), shellIndexFn: shellIndexFnType) UserWriter {
return UserWriter{
.appendTo = appendTo,
.shellIndexFn = shellIndexFn,
@ -98,7 +98,7 @@ test "construct PackedUser blob" {
var buf = ArrayList(u8).init(testing.allocator);
defer buf.deinit();
var writer = UserWriter.init(buf, testShellIndex);
var writer = UserWriter.init(&buf, testShellIndex);
const user1 = User{
.uid = 1000,
.gid = 1000,