From d3ea59b5e28325eaa59a2e7e304e06a86bcb01c2 Mon Sep 17 00:00:00 2001 From: Richard James Howe Date: Fri, 11 May 2018 00:01:41 +0100 Subject: [PATCH] Back to -ansi, removed trailing comma --- Makefile | 2 +- mpc.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 5f2af21..9a45c77 100644 --- a/Makefile +++ b/Makefile @@ -1,6 +1,6 @@ CC = gcc -STND=-std=c99 +STND=-ansi CFLAGS = $(STND) -pedantic -O3 -g -Wall -Werror -Wextra -Wformat=2 -Wshadow \ -Wno-long-long -Wno-overlength-strings -Wno-format-nonliteral -Wcast-align \ -Wwrite-strings -Wstrict-prototypes -Wold-style-definition -Wredundant-decls \ diff --git a/mpc.c b/mpc.c index f0a5916..142c6fe 100644 --- a/mpc.c +++ b/mpc.c @@ -885,7 +885,7 @@ enum { MPC_TYPE_AND = 24, MPC_TYPE_CHECK = 25, - MPC_TYPE_CHECK_WITH = 26, + MPC_TYPE_CHECK_WITH = 26 }; typedef struct { char *m; } mpc_pdata_fail_t;