From: ceriel Date: Thu, 11 Dec 1986 17:03:11 +0000 (+0000) Subject: Corrected a typo. X-Git-Tag: release-5-5~5095 X-Git-Url: https://git.ndcode.org/public/gitweb.cgi?a=commitdiff_plain;h=e98c02b8317e6cab9735e58b8b06838c85443d73;p=ack.git Corrected a typo. --- diff --git a/mach/proto/ncg/gencode.c b/mach/proto/ncg/gencode.c index f7547408b..8e54e33ba 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)); }