From 1b9935cf36e83b389cb26008df93a654af3f2074 Mon Sep 17 00:00:00 2001 From: Larry Doolittle Date: Sun, 7 May 2017 21:28:05 -0700 Subject: Add missing const and add warning flags --- tcctools.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'tcctools.c') diff --git a/tcctools.c b/tcctools.c index 21aa2a7..ac6850c 100644 --- a/tcctools.c +++ b/tcctools.c @@ -101,7 +101,7 @@ ST_FUNC int tcc_tool_ar(TCCState *s1, int argc, char **argv) char tfile[260], stmp[20]; char *file, *name; int ret = 2; - char *ops_conflict = "habdioptxN"; // unsupported but destructive if ignored. + const char *ops_conflict = "habdioptxN"; // unsupported but destructive if ignored. int verbose = 0; i_lib = 0; i_obj = 0; // will hold the index of the lib and first obj -- cgit v1.3.1