From 9092e509c6bb852a7d4f3a1f8b1ac8710ee5ca14 Mon Sep 17 00:00:00 2001 From: sater Date: Mon, 22 Sep 1986 13:15:15 +0000 Subject: [PATCH] changed ad2str function not to add +0 at labels --- mach/proto/ncg/gencode.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/mach/proto/ncg/gencode.c b/mach/proto/ncg/gencode.c index d2ee010a7..1f84faf22 100644 --- a/mach/proto/ncg/gencode.c +++ b/mach/proto/ncg/gencode.c @@ -84,6 +84,8 @@ string ad2str(ad) addr_t ad; { if (ad.ea_str==0) ad.ea_str=""; + if (ad.ea_off==0) + return(mystrcpy(ad.ea_str)); sprintf(buf,"%s%c%ld",ad.ea_str,ad.ea_off>=0 ? '+' : ' ',(long)ad.ea_off); return(mystrcpy(buf)); } -- 2.34.1