Fix clang compilation errors in gdb.mi/basics.c.
authorDoug Evans <dje@google.com>
Mon, 25 Aug 2014 19:40:54 +0000 (12:40 -0700)
committerDoug Evans <dje@google.com>
Mon, 25 Aug 2014 19:40:54 +0000 (12:40 -0700)
gdb/testsuite/ChangeLog:

* gdb.mi/basics.c (callee3, callee2, callee1): Specify result type.
(main): Ditto.

gdb/testsuite/ChangeLog
gdb/testsuite/gdb.mi/basics.c

index 1428f4da083b03bbd25c616a37e6413a7079692c..cac42103c99d76d6ed5222655884153406129b4a 100644 (file)
@@ -1,3 +1,8 @@
+2014-08-25  Doug Evans  <dje@google.com>
+
+       * gdb.mi/basics.c (callee3, callee2, callee1): Specify result type.
+       (main): Ditto.
+
 2014-08-25  Doug Evans  <dje@google.com>
 
        * gdb.threads/thread-execl.exp: #include <stdio.h>.
index 0a4f9de0204c660c2ba429bc366437bb180c5b3a..0eabcd193bce45ad2b009bcf3cf0a26b4c3fb192 100644 (file)
@@ -29,17 +29,17 @@ int callee4 (void)
   C = A + B;
   return 0;
 }
-callee3 (char *strarg)
+void callee3 (char *strarg)
 {
   callee4 ();
 }
 
-callee2 (int intarg, char *strarg)
+void callee2 (int intarg, char *strarg)
 {
   callee3 (strarg);
 }
 
-callee1 (int intarg, char *strarg, double fltarg)
+void callee1 (int intarg, char *strarg, double fltarg)
 {
   callee2 (intarg, strarg);
 }
@@ -57,7 +57,7 @@ void do_nothing (void)
 {
 }
 
-main ()
+int main ()
 {
   callee1 (2, "A string argument.", 3.5);
   callee1 (2, "A string argument.", 3.5);
This page took 0.029742 seconds and 4 git commands to generate.