From: nasm-bot f. H. P. A. <hp...@li...> - 2016-02-12 21:39:17
|
Commit-ID: fc1a7ad66296e13652ea6faca009bbd9ce5c26f6 Gitweb: http://repo.or.cz/w/nasm.git?a=commitdiff;h=fc1a7ad66296e13652ea6faca009bbd9ce5c26f6 Author: H. Peter Anvin <hp...@li...> AuthorDate: Fri, 12 Feb 2016 13:36:37 -0800 Committer: H. Peter Anvin <hp...@li...> CommitDate: Fri, 12 Feb 2016 13:36:37 -0800 outmac: correct the format name for macho32 The name for the macho32 output format was incorrectly set to macho64, which means neither macho32 nor macho64 worked correctly. Signed-off-by: H. Peter Anvin <hp...@li...> --- output/outmac.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/output/outmac.c b/output/outmac.c index 18bbf49..dc1111d 100644 --- a/output/outmac.c +++ b/output/outmac.c @@ -32,8 +32,8 @@ * ----------------------------------------------------------------------- */ /* - * outmac64.c output routines for the Netwide Assembler to produce - * NeXTstep/OpenStep/Rhapsody/Darwin/MacOS X (x86_64) object files + * outmac.c output routines for the Netwide Assembler to produce + * NeXTstep/OpenStep/Rhapsody/Darwin/MacOS X object files */ /* Most of this file is, like Mach-O itself, based on a.out. For more @@ -1499,7 +1499,7 @@ static void macho32_init(void) struct ofmt of_macho32 = { "NeXTstep/OpenStep/Rhapsody/Darwin/MacOS X (i386) object files", - "macho64", + "macho32", 0, 32, null_debug_arr, |