diff options
| author | Andrew Kelley <andrew@ziglang.org> | 2024-05-26 12:07:49 -0700 |
|---|---|---|
| committer | Andrew Kelley <andrew@ziglang.org> | 2024-05-27 20:56:48 -0700 |
| commit | e8201734677ffcbe45dac12f2439f2de8e38710d (patch) | |
| tree | 87f92279a7a5f935ce7c0c561e7a91968c04f2fb /src/Compilation.zig | |
| parent | e2e61f329682c88e0a487e049245d865d2df9239 (diff) | |
| download | zig-e8201734677ffcbe45dac12f2439f2de8e38710d.tar.gz zig-e8201734677ffcbe45dac12f2439f2de8e38710d.zip | |
Compilation: fix sub-compilations given wrong progress node
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 f7ea2434b3..507cbfc6d5 100644 --- a/src/Compilation.zig +++ b/src/Compilation.zig @@ -5968,7 +5968,7 @@ pub fn updateSubCompilation( const sub_node = prog_node.start(@tagName(misc_task), 0); defer sub_node.end(); - try sub_comp.update(prog_node); + try sub_comp.update(sub_node); } // Look for compilation errors in this sub compilation |
