diff options
author | Andrew Cagney <cagney@redhat.com> | 2000-03-29 08:29:00 +0000 |
---|---|---|
committer | Andrew Cagney <cagney@redhat.com> | 2000-03-29 08:29:00 +0000 |
commit | 480ff1fb283f4aebf368e17cabe3fa598768474f (patch) | |
tree | 15ebd36fcc816f54838feaaa89588028083edcad /gdb/remote.c | |
parent | f1251bdd6bd703ced6830769d610bbaa1bd56b6b (diff) | |
download | gdb-480ff1fb283f4aebf368e17cabe3fa598768474f.zip gdb-480ff1fb283f4aebf368e17cabe3fa598768474f.tar.gz gdb-480ff1fb283f4aebf368e17cabe3fa598768474f.tar.bz2 |
Fix thread-extra-info name. qfThreadExtraInfo ->qThreadExtraInfo.
Diffstat (limited to 'gdb/remote.c')
-rw-r--r-- | gdb/remote.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/remote.c b/gdb/remote.c index 2e56072..54d3b2c 100644 --- a/gdb/remote.c +++ b/gdb/remote.c @@ -1654,7 +1654,7 @@ remote_threads_extra_info (struct thread_info *tp) if (use_threadextra_query) { - sprintf (bufp, "qfThreadExtraInfo,%x", tp->pid); + sprintf (bufp, "qThreadExtraInfo,%x", tp->pid); putpkt (bufp); getpkt (bufp, PBUFSIZ, 0); if (bufp[0] != 0) |