From: ceriel Date: Wed, 28 Jan 1987 13:00:33 +0000 (+0000) Subject: Fixed introduced bug X-Git-Tag: release-5-5~4917 X-Git-Url: https://git.ndcode.org/public/gitweb.cgi?a=commitdiff_plain;h=fb8fc4e07cb34ef0ff52417dfe5a03813633d236;p=ack.git Fixed introduced bug --- diff --git a/mach/proto/ncg/gencode.c b/mach/proto/ncg/gencode.c index ca45bc008..7b57d9186 100644 --- a/mach/proto/ncg/gencode.c +++ b/mach/proto/ncg/gencode.c @@ -90,7 +90,7 @@ string ad2str(ad) addr_t ad; { else return(mystrcpy(ad.ea_str)); } - sprintf(buf,"%s%c%ld",ad.ea_str,ad.ea_off>=0 ? '+' : '-',(long)ad.ea_off); + sprintf(buf,"%s%c%ld",ad.ea_str,ad.ea_off>=0 ? '+' : ' ',(long)ad.ea_off); return(mystrcpy(buf)); }