aboutsummaryrefslogtreecommitdiff
path: root/gdb/linux-thread-db.c
diff options
context:
space:
mode:
authorDaniel Jacobowitz <drow@false.org>2006-01-17 14:57:43 +0000
committerDaniel Jacobowitz <drow@false.org>2006-01-17 14:57:43 +0000
commita0841d7ad2cd86e901b6961f1616144aebe8c336 (patch)
tree69af47bcb124e7a1670314266a81f3bc5b3026a6 /gdb/linux-thread-db.c
parent939b2b425df67a530038614d9e4655152391b556 (diff)
downloadgdb-a0841d7ad2cd86e901b6961f1616144aebe8c336.zip
gdb-a0841d7ad2cd86e901b6961f1616144aebe8c336.tar.gz
gdb-a0841d7ad2cd86e901b6961f1616144aebe8c336.tar.bz2
* complaints.c (stop_whining): Make signed.
* linux-thread-db.c (thread_db_store_registers): Use gdb_byte.
Diffstat (limited to 'gdb/linux-thread-db.c')
-rw-r--r--gdb/linux-thread-db.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/gdb/linux-thread-db.c b/gdb/linux-thread-db.c
index 536170e..76b7d0c 100644
--- a/gdb/linux-thread-db.c
+++ b/gdb/linux-thread-db.c
@@ -1,6 +1,6 @@
/* libthread_db assisted debugging support, generic parts.
- Copyright (C) 1999, 2000, 2001, 2003, 2004, 2005
+ Copyright (C) 1999, 2000, 2001, 2003, 2004, 2005, 2006
Free Software Foundation, Inc.
This file is part of GDB.
@@ -1048,7 +1048,7 @@ thread_db_store_registers (int regno)
if (regno != -1)
{
- char raw[MAX_REGISTER_SIZE];
+ gdb_byte raw[MAX_REGISTER_SIZE];
deprecated_read_register_gen (regno, raw);
thread_db_fetch_registers (-1);