diff options
| author | InKryption <59504965+InKryption@users.noreply.github.com> | 2022-07-24 11:01:56 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-07-24 12:01:56 +0300 |
| commit | 7cbd586ace46a8e8cebab660ebca3cfc049305d9 (patch) | |
| tree | 10514a09063847aaed2a8dcc9b0f2196f0cc3ef4 /src/Compilation.zig | |
| parent | 0b4a3ec9501b31e7b31e81b83e5974e6c6d72757 (diff) | |
| download | zig-7cbd586ace46a8e8cebab660ebca3cfc049305d9.tar.gz zig-7cbd586ace46a8e8cebab660ebca3cfc049305d9.zip | |
std.fmt: require specifier for unwrapping ?T and E!T.
Co-authored-by: Veikka Tuominen <git@vexu.eu>
Diffstat (limited to 'src/Compilation.zig')
| -rw-r--r-- | src/Compilation.zig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Compilation.zig b/src/Compilation.zig index 5204910193..300a02a881 100644 --- a/src/Compilation.zig +++ b/src/Compilation.zig @@ -1465,7 +1465,7 @@ pub fn create(gpa: Allocator, options: InitOptions) !*Compilation { .handle = artifact_dir, .path = try options.local_cache_directory.join(arena, &[_][]const u8{artifact_sub_dir}), }; - log.debug("zig_cache_artifact_directory='{s}' use_stage1={}", .{ + log.debug("zig_cache_artifact_directory='{?s}' use_stage1={}", .{ zig_cache_artifact_directory.path, use_stage1, }); |
