summaryrefslogtreecommitdiff
path: root/sqlite.zig
diff options
context:
space:
mode:
authorGravatar Patrick2025-10-18 12:13:32 -0400
committerGravatar Patrick2025-10-18 12:13:32 -0400
commitd3cdfac1eebaee707a0bd08f0db8e7d1d3674ea5 (patch)
treea66197c06d3c6be14b3fb36abef63499a581b16a /sqlite.zig
parentupdate dynamic statement all to call arraylist.append correctly (diff)
downloadzig-sqlite-d3cdfac1eebaee707a0bd08f0db8e7d1d3674ea5.tar.gz
zig-sqlite-d3cdfac1eebaee707a0bd08f0db8e7d1d3674ea5.tar.xz
zig-sqlite-d3cdfac1eebaee707a0bd08f0db8e7d1d3674ea5.zip
update dynamic statement all to call arraylist.toOwnedSlice correctly
Diffstat (limited to 'sqlite.zig')
-rw-r--r--sqlite.zig2
1 files changed, 1 insertions, 1 deletions
diff --git a/sqlite.zig b/sqlite.zig
index 8812b74..dcf05a1 100644
--- a/sqlite.zig
+++ b/sqlite.zig
@@ -1972,7 +1972,7 @@ pub const DynamicStatement = struct {
1972 try rows.append(allocator, row); 1972 try rows.append(allocator, row);
1973 } 1973 }
1974 1974
1975 return rows.toOwnedSlice(); 1975 return rows.toOwnedSlice(allocator);
1976 } 1976 }
1977}; 1977};
1978 1978