gdb.mi/var-cmd.c C++ify
authorPedro Alves <pedro@palves.net>
Thu, 17 Sep 2020 22:33:41 +0000 (23:33 +0100)
committerPedro Alves <pedro@palves.net>
Thu, 17 Sep 2020 23:06:39 +0000 (00:06 +0100)
This adjusts gdb.mi/var-cmd.c to make it buildable as a C++ program.

gdb/testsuite/ChangeLog:

* gdb.mi/var-cmd.c (do_anonymous_type_tests): Add cast.

gdb/testsuite/ChangeLog
gdb/testsuite/gdb.mi/var-cmd.c

index a97ac09c5e0fdb2cb06614e00278b41c66eddc56..75a4c2d367cbe273f593d858ae4b3a215abc2d68 100644 (file)
@@ -1,3 +1,7 @@
+2020-09-17  Pedro Alves  <pedro@palves.net>
+
+       * gdb.mi/var-cmd.c (do_anonymous_type_tests): Add cast.
+
 2020-09-17  Pedro Alves  <pedro@palves.net>
 
        * gdb.base/exprs.c: Replace 'this' with 'self' throughout.
index 0529b67c7f160ca935185f610e233b33c2d1d694..f209106dd6593c8fd228e54717b8082a0518f250 100644 (file)
@@ -566,7 +566,7 @@ do_anonymous_type_tests (void)
     };
   } v = {1, {2}, {3}};
 
-  anon = malloc (sizeof (struct anonymous));
+  anon = (struct anonymous *) malloc (sizeof (struct anonymous));
   anon->a = 1;
   anon->b = 2;
   anon->c = (char *) 3;