From 997627f28874e388827b30a8be63ec1f9b0d3a2a Mon Sep 17 00:00:00 2001 From: Giuseppe Cesarano Date: Sat, 27 Apr 2024 14:14:09 +0200 Subject: [PATCH] fix: _debug typo in startWithLogging debug = true should have been _debug = true. --- src/zap.zig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/zap.zig b/src/zap.zig index b8ab289..988e833 100644 --- a/src/zap.zig +++ b/src/zap.zig @@ -118,7 +118,7 @@ pub fn enableDebugLog() void { /// start Zap with debug logging on pub fn startWithLogging(args: fio.fio_start_args) void { - debug = true; + _debug = true; fio.fio_start(args); }