summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--sqlite.zig2
1 files changed, 1 insertions, 1 deletions
diff --git a/sqlite.zig b/sqlite.zig
index cad4a6e..1c22c83 100644
--- a/sqlite.zig
+++ b/sqlite.zig
@@ -306,7 +306,7 @@ pub const Db = struct {
306 306
307 // Validate the threading mode 307 // Validate the threading mode
308 if (options.threading_mode != .SingleThread and !isThreadSafe()) { 308 if (options.threading_mode != .SingleThread and !isThreadSafe()) {
309 return error.CannotUseSingleThreadedSQLite; 309 return error.SQLiteBuildNotThreadSafe;
310 } 310 }
311 311
312 // Compute the flags 312 // Compute the flags