Corrected a typo.
authorceriel <none@none>
Thu, 11 Dec 1986 17:03:11 +0000 (17:03 +0000)
committerceriel <none@none>
Thu, 11 Dec 1986 17:03:11 +0000 (17:03 +0000)
mach/proto/ncg/gencode.c

index f754740..8e54e33 100644 (file)
@@ -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));
 }