From 17a2481bb326dc596a09b15e7443535283407b29 Mon Sep 17 00:00:00 2001 From: ceriel Date: Thu, 11 Dec 1986 17:03:11 +0000 Subject: [PATCH] Corrected a typo. --- mach/proto/ncg/gencode.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mach/proto/ncg/gencode.c b/mach/proto/ncg/gencode.c index f7547408..8e54e33b 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)); }