zig

fork of https://codeberg.org/ziglang/zig
Log | Files | Refs | README | LICENSE

commit f7b82ed416e32a9164c67a35924b9b99e86707fa (tree)
parent 9135115573051eff58ffcf1ba0a3cce51ed0b413
Author: Xavier Bouchoux <xavierb@gmail.com>
Date:   Tue, 15 Aug 2023 06:09:14 +0000

objcopy: fix typo

fixes aecc15391a4c37a4504d29cb7e3179990b180773
the usual last 'harmless' cosmetic ajustement before commit strikes again...

Diffstat:
Msrc/objcopy.zig | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/objcopy.zig b/src/objcopy.zig @@ -124,7 +124,7 @@ pub fn cmdObjCopy( }; const mode = mode: { - if (out_fmt != .elf or !only_keep_debug) + if (out_fmt != .elf or only_keep_debug) break :mode fs.File.default_mode; if (in_file.stat()) |stat| break :mode stat.mode