From: ceriel Date: Mon, 23 Apr 1990 13:43:05 +0000 (+0000) Subject: Use C_out instead if EM_mkcalls X-Git-Tag: release-5-5~1730 X-Git-Url: https://git.ndcode.org/public/gitweb.cgi?a=commitdiff_plain;h=dbd1744edc897ee564971846fcfdbe8f7b897e1c;p=ack.git Use C_out instead if EM_mkcalls --- diff --git a/util/misc/convert.c b/util/misc/convert.c index 9306dfdba..588a312cc 100644 --- a/util/misc/convert.c +++ b/util/misc/convert.c @@ -27,6 +27,7 @@ static char rcsid[] = "$Header$"; char *filename; /* Name of input file */ int errors; /* Number of errors */ +extern char *C_error; main(argc,argv) char **argv; @@ -57,8 +58,8 @@ main(argc,argv) if (EM_error) { error("%s", EM_error); } - if (p->em_type != EM_ERROR && !EM_mkcalls(p)) { - error("%s", EM_error); + if (p->em_type != EM_ERROR && !C_out(p)) { + error("%s", C_error); } EM_getinstr(p); }