summaryrefslogtreecommitdiff
path: root/test.zig
diff options
context:
space:
mode:
authorGravatar Krvopije2023-11-21 04:40:16 +0100
committerGravatar Vincent Rischmann2023-11-21 10:49:10 +0100
commit2824e5800cc56cefc24ec89dc3fd7c68e09bb29b (patch)
tree35dba6c98e0b1784f959c00bef814ee407a63abc /test.zig
parentUpdate sqlite.zig (diff)
downloadzig-sqlite-2824e5800cc56cefc24ec89dc3fd7c68e09bb29b.tar.gz
zig-sqlite-2824e5800cc56cefc24ec89dc3fd7c68e09bb29b.tar.xz
zig-sqlite-2824e5800cc56cefc24ec89dc3fd7c68e09bb29b.zip
Update test.zig
Diffstat (limited to 'test.zig')
-rw-r--r--test.zig2
1 files changed, 1 insertions, 1 deletions
diff --git a/test.zig b/test.zig
index f6d9c9c..fcc8aa7 100644
--- a/test.zig
+++ b/test.zig
@@ -9,7 +9,7 @@ pub fn getTestDb() !Db {
9 var buf: [1024]u8 = undefined; 9 var buf: [1024]u8 = undefined;
10 var fba = std.heap.FixedBufferAllocator.init(&buf); 10 var fba = std.heap.FixedBufferAllocator.init(&buf);
11 11
12 var mode = dbMode(fba.allocator()); 12 const mode = dbMode(fba.allocator());
13 13
14 return try Db.init(.{ 14 return try Db.init(.{
15 .open_flags = .{ 15 .open_flags = .{