* linux-thread-db.c (check_for_thread_db): Only print if info_verbose.

This commit is contained in:
Daniel Jacobowitz 2007-10-25 22:09:34 +00:00
parent f6071bfaa3
commit 8f13689556
2 changed files with 7 additions and 2 deletions

View File

@ -1,3 +1,7 @@
2007-10-25 Daniel Jacobowitz <dan@codesourcery.com>
* linux-thread-db.c (check_for_thread_db): Only print if info_verbose.
2007-10-25 Pedro Alves <pedro_alves@portugalmail.pt>
* memory-map.c (parse_memory_map): Don't use an empty struct

View File

@ -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;
}