* ch-lang.c (chill_is_varying_struct): Magic string is
authorPer Bothner <per@bothner.com>
Wed, 30 Mar 1994 05:23:00 +0000 (05:23 +0000)
committerPer Bothner <per@bothner.com>
Wed, 30 Mar 1994 05:23:00 +0000 (05:23 +0000)
was "<var_length>" is now "__var_length" (more portable).

gdb/ChangeLog
gdb/ch-lang.c

index 0bcefda00daa9e6a2612bfd4bf612b97d1280267..b4fbf953bd440dbcd21f1312364f1e75809d5a52 100644 (file)
@@ -1,3 +1,8 @@
+Tue Mar 29 21:14:04 1994  Per Bothner  (bothner@kalessin.cygnus.com)
+
+       * ch-lang.c (chill_is_varying_struct):  Magic string is
+       was "<var_length>" is now "__var_length" (more portable).
+
 Tue Mar 29 19:41:34 1994  Jim Kingdon  (kingdon@lioth.cygnus.com)
 
        * remote.c (getpkt): If we get a timeout, actually retry rather
index 5d9d6fa670b1a3bc2f6f637df2b57fc39de2099d..f7d9212185368994c167401816a92dd38b156c74 100644 (file)
@@ -192,7 +192,7 @@ chill_is_varying_struct (type)
     return 0;
   if (TYPE_NFIELDS (type) != 2)
     return 0;
-  if (strcmp (TYPE_FIELD_NAME (type, 0), "<var_length>") != 0)
+  if (strcmp (TYPE_FIELD_NAME (type, 0), "__var_length") != 0)
     return 0;
   return 1;
 }
This page took 0.034301 seconds and 4 git commands to generate.