From 99a9915b04100c353fd8d79e6940ce5bde9fb290 Mon Sep 17 00:00:00 2001 From: nobu Date: Sat, 31 May 2008 09:28:20 +0000 Subject: * suppress warnings with -Wwrite-string. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@16716 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- lex.c.src | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lex.c.src') diff --git a/lex.c.src b/lex.c.src index 76cd2437a..504d5230b 100644 --- a/lex.c.src +++ b/lex.c.src @@ -1,5 +1,5 @@ %{ -struct kwtable {char *name; int id[2]; enum lex_state_e state;}; +struct kwtable {const char *name; int id[2]; enum lex_state_e state;}; const struct kwtable *rb_reserved_word(const char *, unsigned int); #ifndef RIPPER %} -- cgit