Almost kind of working

This commit is contained in:
Caleb Gardner
2025-05-14 01:59:19 -05:00
parent a866804853
commit 3684a958a0
9 changed files with 135 additions and 66 deletions
+1 -1
View File
@@ -5,6 +5,6 @@ const squashfs = @import("squashfs.zig");
const testFileName = "testing/LinuxPATest.sfs";
test "open test file" {
const reader = try squashfs.newReader(testFileName);
var reader = try squashfs.newReader(testFileName);
defer reader.close();
}