From dbd1744edc897ee564971846fcfdbe8f7b897e1c Mon Sep 17 00:00:00 2001 From: ceriel Date: Mon, 23 Apr 1990 13:43:05 +0000 Subject: [PATCH] Use C_out instead if EM_mkcalls --- util/misc/convert.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) 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); } -- 2.34.1