2010-02-23 Harald Koenig <H.Koenig@science-computing.de>
authorPedro Alves <palves@redhat.com>
Tue, 23 Feb 2010 17:03:54 +0000 (17:03 +0000)
committerPedro Alves <palves@redhat.com>
Tue, 23 Feb 2010 17:03:54 +0000 (17:03 +0000)
* c-exp.y (token_and_value): s/union YYSTYPE/YYSTYPE.

gdb/ChangeLog
gdb/c-exp.y

index 4abb6af8ccbfed7431d590e927eaa155bd98159c..3d9db88999803074e233c35ecbae5cafcf2319bd 100644 (file)
@@ -1,3 +1,7 @@
+2010-02-23  Harald Koenig  <H.Koenig@science-computing.de>
+
+       * c-exp.y (token_and_value): s/union YYSTYPE/YYSTYPE.
+
 2010-02-23  Harald Koenig  <H.Koenig@science-computing.de>
 
        * varobj.c (varobj_update): Avoid non-constants in initializers.
index 5ac90d8c69b00c11cb2161a407b22a1a5d5687e1..1af76c9dc71a7d2ce7f55e88c82321689735f380 100644 (file)
@@ -2295,7 +2295,7 @@ lex_one_token (void)
 typedef struct
 {
   int token;
-  union YYSTYPE value;
+  YYSTYPE value;
 } token_and_value;
 
 DEF_VEC_O (token_and_value);