From: sater Date: Mon, 22 Sep 1986 13:15:15 +0000 (+0000) Subject: changed ad2str function not to add +0 at labels X-Git-Tag: release-5-5~5222 X-Git-Url: https://git.ndcode.org/public/gitweb.cgi?a=commitdiff_plain;h=9092e509c6bb852a7d4f3a1f8b1ac8710ee5ca14;p=ack.git changed ad2str function not to add +0 at labels --- 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)); }