2004-08-27 Michael Chastain <mec.gnu@mindspring.com>
authorMichael Chastain <mec@google.com>
Fri, 27 Aug 2004 11:13:28 +0000 (11:13 +0000)
committerMichael Chastain <mec@google.com>
Fri, 27 Aug 2004 11:13:28 +0000 (11:13 +0000)
Fix PR testsuite/1735.
* gdb.threads/schedlock.c (thread_function): Add a cast
to suppress a gcc warning.
* gdb.threads/thread-specific.c (thread_function): Likewise.

gdb/testsuite/ChangeLog
gdb/testsuite/gdb.threads/schedlock.c
gdb/testsuite/gdb.threads/thread-specific.c

index e8315a820b8697db408f8b8330736165c388af67..3060b32a1d319b2ef86a890ee0564124e2021648 100644 (file)
@@ -1,3 +1,10 @@
+2004-08-27  Michael Chastain  <mec.gnu@mindspring.com>
+
+       Fix PR testsuite/1735.
+       * gdb.threads/schedlock.c (thread_function): Add a cast
+       to suppress a gcc warning.
+       * gdb.threads/thread-specific.c (thread_function): Likewise.
+
 2004-08-26  Michael Chastain  <mec.gnu@mindspring.com>
 
        * gdb.base/unload.c: Include <stdlib.h>.
index 0403dc0e584df875366909ef841efd0905cf23c2..29022824d2644bf11e55479dc0f10d3e239440d9 100644 (file)
@@ -1,6 +1,6 @@
 /* This testcase is part of GDB, the GNU debugger.
 
-   Copyright 2002, 2003 Free Software Foundation, Inc.
+   Copyright 2002, 2003, 2004 Free Software Foundation, Inc.
 
    This program is free software; you can redistribute it and/or modify
    it under the terms of the GNU General Public License as published by
@@ -52,7 +52,7 @@ int main() {
 
 void *thread_function(void *arg) {
     int my_number =  (long) arg;
-    int *myp = &args[my_number];
+    int *myp = (int *) &args[my_number];
 
     /* Don't run forever.  Run just short of it :)  */
     while (*myp > 0)
index 88a462dac2910c972deee5c34f9464e98dafe093..8839d72e176d9c3909bd49179e63960637cf0d73 100644 (file)
@@ -53,7 +53,7 @@ int main() {
 
 void *thread_function(void *arg) {
     int my_number =  (long) arg;
-    int *myp = &args[my_number];
+    int *myp = (int *) &args[my_number];
 
     /* Don't run forever.  Run just short of it :)  */
     while (*myp > 0)