]> gitweb.ps.run Git - ziglmdb/blobdiff - src/lmdb.zig
changes
[ziglmdb] / src / lmdb.zig
index 3c8ac3ab511d62f6e5659aba4fbf64fde138316d..b7d97eaf8cab0e7ff7c7103d42c3603c33fc32de 100644 (file)
@@ -1,8 +1,6 @@
 const std = @import("std");
 const lmdb = @cImport(@cInclude("lmdb.h"));
 
-pub usingnamespace lmdb;
-
 pub const Cursor = struct {
     const Self = @This();
 
@@ -339,7 +337,7 @@ test "cursor" {
     }
 
     while (try cursor.get(&key, Value, .Next)) |val| {
-        std.debug.print("{}: {?}\n", .{ key, val });
+        std.debug.print("{}: {}\n", .{ key, val });
     }
 }