| author | |
| committer | |
| log | edccd68adf58273f44c57ef0d609ec09cc3fb41e |
| tree | 51fd7eacf50b59252264876f6e156aa5b37ec3e8 |
| parent | 41ab64c3eb7a104e78ca96cfe861a03f3a150d47 |
oops, this was supposed to return true, not false.1 files changed, 1 insertions(+), 1 deletions(-)
src/Package/Module.zig+1-1| ... | ... | @@ -187,7 +187,7 @@ pub fn create(arena: Allocator, options: CreateOptions) !*Package.Module { |
| 187 | 187 | if (!target_util.hasRedZone(target)) { |
| 188 | 188 | if (options.inherited.red_zone == true) |
| 189 | 189 | return error.TargetHasNoRedZone; |
| 190 | break :b true; | |
| 190 | break :b false; | |
| 191 | 191 | } |
| 192 | 192 | if (options.inherited.red_zone) |x| break :b x; |
| 193 | 193 | if (options.parent) |p| break :b p.red_zone; |