* c-lex.c (cb_ident): Cast cstr.text to const char *.
authorRainer Orth <ro@TechFak.Uni-Bielefeld.DE>
Wed, 9 Jul 2003 12:21:12 +0000 (12:21 +0000)
committerRainer Orth <ro@gcc.gnu.org>
Wed, 9 Jul 2003 12:21:12 +0000 (12:21 +0000)
From-SVN: r69138

gcc/ChangeLog
gcc/c-lex.c

index 00ab6ca..a90d451 100644 (file)
@@ -1,3 +1,7 @@
+2003-07-09  Rainer Orth  <ro@TechFak.Uni-Bielefeld.DE>
+
+       * c-lex.c (cb_ident): Cast cstr.text to const char *.
+
 2003-07-09  Nathan Sidwell  <nathan@codesourcery.com>
 
        * gcov-io.h: Update documentation.
index f573360..034b3b6 100644 (file)
@@ -184,7 +184,7 @@ cb_ident (cpp_reader *pfile ATTRIBUTE_UNUSED,
       cpp_string cstr = { 0, 0 };
       if (cpp_interpret_string (pfile, str, 1, &cstr, false))
        {
-         ASM_OUTPUT_IDENT (asm_out_file, cstr.text);
+         ASM_OUTPUT_IDENT (asm_out_file, (const char *) cstr.text);
          free ((void *)cstr.text);
        }
     }