]> granicus.if.org Git - yasm/commitdiff
* objfmt.h (yasm_objfmt_output): Fix macro.
authorPeter Johnson <peter@tortall.net>
Sun, 5 Feb 2006 02:17:46 +0000 (02:17 -0000)
committerPeter Johnson <peter@tortall.net>
Sun, 5 Feb 2006 02:17:46 +0000 (02:17 -0000)
* yasm.c (main): Fix call to yasm_objfmt_output.

svn path=/trunk/yasm/; revision=1361

frontends/yasm/yasm.c
libyasm/objfmt.h

index f943b2d6502fb0a2965cd119736017ac54892ed4..2544c290c2e609285e47c739414f45ba849c0ee4 100644 (file)
@@ -666,7 +666,7 @@ main(int argc, char *argv[])
     }
 
     /* Write the object file */
-    yasm_objfmt_output(cur_objfmt, obj?obj:stderr, obj_filename,
+    yasm_objfmt_output(cur_objfmt, obj?obj:stderr,
                       strcmp(cur_dbgfmt_module->keyword, "null"), cur_dbgfmt);
 
     /* Close object file */
index b988197d9f51a3fd6a946141c4b393e7ad5126e6..33ccb6a7b2650d270022fc80f0bc051ca12e84bc 100644 (file)
@@ -232,7 +232,7 @@ int yasm_objfmt_directive(yasm_objfmt *objfmt, const char *name,
 
 #define yasm_objfmt_create(module, object, a)  module->create(object, a)
 
-#define yasm_objfmt_output(objfmt, f, obj_fn, all_syms, df) \
+#define yasm_objfmt_output(objfmt, f, all_syms, df) \
     ((yasm_objfmt_base *)objfmt)->module->output(objfmt, f, all_syms, df)
 #define yasm_objfmt_destroy(objfmt) \
     ((yasm_objfmt_base *)objfmt)->module->destroy(objfmt)