From 9e8db5b7505a6c2e601c8a94b9d8a4282b5df184 Mon Sep 17 00:00:00 2001 From: Jonathan Marler Date: Wed, 12 Jun 2019 21:09:52 -0600 Subject: [PATCH] Remove const on argsAlloc --- std/process.zig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/std/process.zig b/std/process.zig index 410575297e..b39c6e1196 100644 --- a/std/process.zig +++ b/std/process.zig @@ -388,7 +388,7 @@ pub fn args() ArgIterator { } /// Caller must call argsFree on result. -pub fn argsAlloc(allocator: *mem.Allocator) ![]const []u8 { +pub fn argsAlloc(allocator: *mem.Allocator) ![][]u8 { if (builtin.os == .wasi) { var count: usize = undefined; var buf_size: usize = undefined;