authorgravatar for hello@nektro.netMeghan Denny <hello@nektro.net> 2026-05-26 20:00:54 -07:00
committergravatar for hello@nektro.netMeghan Denny <hello@nektro.net> 2026-05-26 20:00:54 -07:00
logb2c23066c0431542cbc97aedadd9c8890c298e7b
tree813a6e3b8a6342e728fa1e2d326b2334b7327f9b
parent4711aa5be3f62f38467e7c256fa9c4a98be4bbc2
signaturebadge-check Signed by SSH key SHA256:4hHJbtBRU58AYXwjL7fkz2fnQHdiye8x1QpTCQ0sHNw

more nio.fmt


2 files changed, 2 insertions(+), 2 deletions(-)

src/chrome.zig+1-1
...@@ -27,7 +27,7 @@ pub fn init_thread(args: struct { nfs.Dir }) !void {...@@ -27,7 +27,7 @@ pub fn init_thread(args: struct { nfs.Dir }) !void {
27 const dir = args[0];27 const dir = args[0];
28 tid = linux.gettid();28 tid = linux.gettid();
2929
30 path = try std.fmt.allocPrintZ(alloc, "trace.{d}.{d}.chrome.json", .{ pid, tid });30 path = try nio.fmt.allocPrintZ(alloc, "trace.{d}.{d}.chrome.json", .{ pid, tid });
31 file = try dir.createFile(path, .{});31 file = try dir.createFile(path, .{});
32 buffered_writer = .init(file);32 buffered_writer = .init(file);
3333
src/spall.zig+1-1
...@@ -27,7 +27,7 @@ pub fn init_thread(args: struct { nfs.Dir }) !void {...@@ -27,7 +27,7 @@ pub fn init_thread(args: struct { nfs.Dir }) !void {
27 const dir = args[0];27 const dir = args[0];
28 tid = linux.gettid();28 tid = linux.gettid();
2929
30 path = try std.fmt.allocPrintZ(alloc, "{d}.{d}.spall", .{ pid, tid });30 path = try nio.fmt.allocPrintZ(alloc, "{d}.{d}.spall", .{ pid, tid });
31 file = try dir.createFile(path, .{});31 file = try dir.createFile(path, .{});
32 buffered_writer = .init(file);32 buffered_writer = .init(file);
3333