From c3ab5c0d413cb1d69286b347772833f78c08cf08 Mon Sep 17 00:00:00 2001 From: Hamcha Date: Mon, 6 May 2024 00:24:39 +0200 Subject: [PATCH] dummy --- src/main.zig | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/src/main.zig b/src/main.zig index 2210896..af0df05 100644 --- a/src/main.zig +++ b/src/main.zig @@ -11,13 +11,15 @@ pub fn main() !void { const args = try std.process.argsAlloc(allocator); defer std.process.argsFree(allocator, args); - if (args.len < 3) { + if (args.len < 4) { std.log.err("Usage: {s} ", .{args[0]}); std.process.exit(1); } const inputFile = args[1]; - const outputPath = args[2]; + const inputConfig = args[2]; + _ = inputConfig; // autofix + const outputPath = args[3]; _ = outputPath; // autofix // Read font