summaryrefslogtreecommitdiff
path: root/helpers.zig
diff options
context:
space:
mode:
Diffstat (limited to 'helpers.zig')
-rw-r--r--helpers.zig2
1 files changed, 1 insertions, 1 deletions
diff --git a/helpers.zig b/helpers.zig
index aa04f54..7bcbabe 100644
--- a/helpers.zig
+++ b/helpers.zig
@@ -84,5 +84,5 @@ fn sliceFromValue(sqlite_value: *c.sqlite3_value) []const u8 {
84 const value = c.sqlite3_value_text(sqlite_value); 84 const value = c.sqlite3_value_text(sqlite_value);
85 debug.assert(value != null); // TODO(vincent): how do we handle this properly ? 85 debug.assert(value != null); // TODO(vincent): how do we handle this properly ?
86 86
87 return value.?[0..size]; 87 return value[0..size];
88} 88}