diff options
Diffstat (limited to '')
| -rw-r--r-- | sqlite.zig | 2 |
1 files changed, 1 insertions, 1 deletions
| @@ -287,7 +287,7 @@ fn getDetailedErrorFromResultCode(code: c_int) DetailedError { | |||
| 287 | } | 287 | } |
| 288 | 288 | ||
| 289 | fn getErrorOffset(db: *c.sqlite3) i32 { | 289 | fn getErrorOffset(db: *c.sqlite3) i32 { |
| 290 | if (comptime c.SQLITE_VERSION_NUMBER >= 3038000) { | 290 | if (c.SQLITE_VERSION_NUMBER >= 3038000) { |
| 291 | return c.sqlite3_error_offset(db); | 291 | return c.sqlite3_error_offset(db); |
| 292 | } | 292 | } |
| 293 | return -1; | 293 | return -1; |