diff options
| author | Andrew Kelley <superjoe30@gmail.com> | 2016-09-21 17:40:50 -0400 |
|---|---|---|
| committer | Andrew Kelley <superjoe30@gmail.com> | 2016-09-21 17:40:50 -0400 |
| commit | 7aeca9bfed654f7f5d0e4b9775459b878f4726ed (patch) | |
| tree | f883943fdfb3cbad4807e0e774e444de2ac7c499 /std/debug.zig | |
| parent | 3f8f0b9bba5407ed5f7279bfdb7d22afaa126674 (diff) | |
| download | zig-7aeca9bfed654f7f5d0e4b9775459b878f4726ed.tar.gz zig-7aeca9bfed654f7f5d0e4b9775459b878f4726ed.zip | |
fix incorrect linking from previous commit
Diffstat (limited to 'std/debug.zig')
| -rw-r--r-- | std/debug.zig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/std/debug.zig b/std/debug.zig index d8d2ea4b48..bdd33298d8 100644 --- a/std/debug.zig +++ b/std/debug.zig @@ -196,7 +196,7 @@ fn parseFormValue(in_stream: &io.InStream, form_id: u64, is_64: bool) -> %FormVa const child_form_id = %return readULeb128(in_stream); parseFormValue(in_stream, child_form_id, is_64) }, - else => return error.InvalidDebugInfo, + else => error.InvalidDebugInfo, } } |
