aboutsummaryrefslogtreecommitdiff
path: root/gdb/testsuite/gdb.threads/schedlock.c
diff options
context:
space:
mode:
authorMichael Chastain <mec@google.com>2004-08-27 11:13:28 +0000
committerMichael Chastain <mec@google.com>2004-08-27 11:13:28 +0000
commite5b2549632217988c5fc4ef40c779e4089962f66 (patch)
treeaf355b75362be577f4bdc0b0eec838c5e5f56a57 /gdb/testsuite/gdb.threads/schedlock.c
parent45aa12b4ca686068ef07694b2d4176217bdfd648 (diff)
downloadgdb-e5b2549632217988c5fc4ef40c779e4089962f66.zip
gdb-e5b2549632217988c5fc4ef40c779e4089962f66.tar.gz
gdb-e5b2549632217988c5fc4ef40c779e4089962f66.tar.bz2
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.
Diffstat (limited to 'gdb/testsuite/gdb.threads/schedlock.c')
-rw-r--r--gdb/testsuite/gdb.threads/schedlock.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/gdb/testsuite/gdb.threads/schedlock.c b/gdb/testsuite/gdb.threads/schedlock.c
index 0403dc0..2902282 100644
--- a/gdb/testsuite/gdb.threads/schedlock.c
+++ b/gdb/testsuite/gdb.threads/schedlock.c
@@ -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)