From 094b1d07426a54c377b87c30f250e8236943bf7a Mon Sep 17 00:00:00 2001 From: ceriel Date: Thu, 16 May 1991 13:08:32 +0000 Subject: [PATCH] Fixed missing ; before } --- util/ceg/as_parser/Makefile | 1 - util/ceg/as_parser/help.c | 2 +- 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/util/ceg/as_parser/Makefile b/util/ceg/as_parser/Makefile index 50139c2e7..72092df27 100644 --- a/util/ceg/as_parser/Makefile +++ b/util/ceg/as_parser/Makefile @@ -18,7 +18,6 @@ LEXLIB = -ll all: as_parser eval/eval as_parser: dummy $(OFILES) - make $(OFILES) $(CC) -o as_parser $(OFILES) $(LIBS) $(LEXLIB) eval/eval: diff --git a/util/ceg/as_parser/help.c b/util/ceg/as_parser/help.c index bf29adf90..4fb4b608e 100644 --- a/util/ceg/as_parser/help.c +++ b/util/ceg/as_parser/help.c @@ -6,7 +6,7 @@ extern char *strindex(); -static struct Op_info { char *name, *type} +static struct Op_info { char *name, *type; } op_info[ MAX_OPERANDS] = { { 0, 0}}; static int n_ops = 0; /* Number of opertands of current -- 2.34.1