From 61d5c458a026add4ef45c174504a88a9b37eacb6 Mon Sep 17 00:00:00 2001 From: Guy Harris Date: Mon, 13 Jan 2014 19:07:48 +0000 Subject: Squelch some warnings. svn path=/trunk/; revision=54711 --- tools/lemon/lemon.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'tools') diff --git a/tools/lemon/lemon.c b/tools/lemon/lemon.c index 19a91008cc..7bc9f746c6 100644 --- a/tools/lemon/lemon.c +++ b/tools/lemon/lemon.c @@ -4636,8 +4636,8 @@ struct symbol **Symbol_arrayof(void) /* Compare two configurations */ int Configcmp(const char *_a,const char *_b) { - const struct config *a = (struct config *) _a; - const struct config *b = (struct config *) _b; + const struct config *a = (const struct config *) _a; + const struct config *b = (const struct config *) _b; int x; x = a->rp->index - b->rp->index; if( x==0 ) x = a->dot - b->dot; -- cgit v1.2.3