summaryrefslogtreecommitdiff
path: root/gdb/linux-thread-db.c
diff options
context:
space:
mode:
authorDaniel Jacobowitz <dan@debian.org>2007-10-25 22:09:34 +0000
committerDaniel Jacobowitz <dan@debian.org>2007-10-25 22:09:34 +0000
commit415a76d7970463e6918db123b25e3925974b5efd (patch)
tree1f3234f7b9103c06b31c7cca94654a7a87b8f19f /gdb/linux-thread-db.c
parent21068c347a3d517f9780d727423464f233335c22 (diff)
downloadgdb-415a76d7970463e6918db123b25e3925974b5efd.tar.gz
* linux-thread-db.c (check_for_thread_db): Only print if info_verbose.
Diffstat (limited to 'gdb/linux-thread-db.c')
-rw-r--r--gdb/linux-thread-db.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/gdb/linux-thread-db.c b/gdb/linux-thread-db.c
index dbb9a3dbde1..d2398dff929 100644
--- a/gdb/linux-thread-db.c
+++ b/gdb/linux-thread-db.c
@@ -608,8 +608,9 @@ check_for_thread_db (void)
/* Paranoid - don't let a NULL path slip through. */
library = LIBTHREAD_DB_SO;
- printf_unfiltered (_("Using host libthread_db library \"%s\".\n"),
- library);
+ if (info_verbose)
+ printf_unfiltered (_("Using host libthread_db library \"%s\".\n"),
+ library);
already_loaded = 1;
}