* ch-lang.c (chill_is_varying_struct): Magic string is
[binutils-gdb.git] / gdb / ch-lang.c
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;
 }