summaryrefslogtreecommitdiff
path: root/output/outobj.c
diff options
context:
space:
mode:
authorVictor van den Elzen <victor.vde@gmail.com>2008-11-05 14:11:46 +0100
committerVictor van den Elzen <victor.vde@gmail.com>2008-11-05 14:19:15 +0100
commitf568613c2a17838aa91f5730f3b8a36c610d1aa4 (patch)
tree4c41caab76149f2c7d7b842e34f2df56b881bf32 /output/outobj.c
parent67a405e2f495982cac724fd95e1db8ee68b12c13 (diff)
downloadnasm-f568613c2a17838aa91f5730f3b8a36c610d1aa4.tar.gz
Fix BR #916647
nasm.c should respect the default debug format of the output format, instead of replacing it with the first format in the list. This is cleaner and allows the list to be sorted normally. This commit rewrites commit 116994111b which was very fragile.
Diffstat (limited to 'output/outobj.c')
-rw-r--r--output/outobj.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/output/outobj.c b/output/outobj.c
index 5a727248..f51dcd11 100644
--- a/output/outobj.c
+++ b/output/outobj.c
@@ -2524,7 +2524,7 @@ struct ofmt of_obj = {
"obj",
NULL,
borland_debug_arr,
- &null_debug_form,
+ &borland_debug_form,
obj_stdmac,
obj_init,
obj_set_info,