feat: add missing flush

This commit is contained in:
2025-09-26 11:02:40 +02:00
parent 4500e8a6a4
commit 1d14b550cf

View File

@@ -113,6 +113,7 @@ pub fn main() !u8 {
var stdout_writer = std.fs.File.stdout().writer(&stdout_buffer);
const stdout = &stdout_writer.interface;
_ = try stdout.write(try std.fmt.allocPrint(allocator, "{d}\n", .{selected_app.id}));
try stdout.flush();
return 0;
}