From 230db148a32468468ee5f4979c6b08b0848e1e22 Mon Sep 17 00:00:00 2001 From: "H. Peter Anvin" Date: Wed, 27 Sep 2017 15:12:03 -0700 Subject: [PATCH] outelf.c: fix a typo in previous commit Signed-off-by: H. Peter Anvin --- output/outelf.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/output/outelf.c b/output/outelf.c index 6942e2cf..c1f949da 100644 --- a/output/outelf.c +++ b/output/outelf.c @@ -3139,7 +3139,7 @@ static void dwarf_generate(void) saa_write8(pabbrev,DW_FORM_data4); saa_write16(pabbrev,0); /* end of entry */ /* Terminal zero entry */ - saa_write8(paddrev,0); + saa_write8(pabbrev,0); abbrevlen = saalen = pabbrev->datalen; abbrevbuf = pbuf = nasm_malloc(saalen); saa_rnbytes(pabbrev, pbuf, saalen); -- 2.11.4.GIT