diff options
| author | 2025-10-18 12:13:32 -0400 | |
|---|---|---|
| committer | 2025-10-18 12:13:32 -0400 | |
| commit | d3cdfac1eebaee707a0bd08f0db8e7d1d3674ea5 (patch) | |
| tree | a66197c06d3c6be14b3fb36abef63499a581b16a /sqlite.zig | |
| parent | update dynamic statement all to call arraylist.append correctly (diff) | |
| download | zig-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.zig | 2 |
1 files changed, 1 insertions, 1 deletions
| @@ -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 | ||