diff options
author | Mark Kettenis <kettenis@gnu.org> | 2001-07-11 09:14:51 +0000 |
---|---|---|
committer | Mark Kettenis <kettenis@gnu.org> | 2001-07-11 09:14:51 +0000 |
commit | 936742abbee9afc7d09c15fbe8250be7da3a3898 (patch) | |
tree | 667164196a1706d369ed37d0bffe88c99441594d /gdb/thread-db.c | |
parent | 90ab7e9a68d5b4eef2d2d4afa384a458d775cce3 (diff) | |
download | binutils-gdb-936742abbee9afc7d09c15fbe8250be7da3a3898.tar.gz |
* thread-db.c (enable_thread_event_reporting): Correct warning
message about getting thread death breakpoint.
Reported by John S Kallal <jskallal@home.com>.
Diffstat (limited to 'gdb/thread-db.c')
-rw-r--r-- | gdb/thread-db.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/thread-db.c b/gdb/thread-db.c index 8ddc6a27332..45cdb7201b9 100644 --- a/gdb/thread-db.c +++ b/gdb/thread-db.c @@ -404,7 +404,7 @@ enable_thread_event_reporting (void) err = td_ta_event_addr_p (thread_agent, TD_DEATH, ¬ify); if (err != TD_OK) { - warning ("Unable to get location for thread creation breakpoint: %s", + warning ("Unable to get location for thread death breakpoint: %s", thread_db_err_str (err)); return; } |