[ARI] Remove trailing new-line in argument of call to warning.

gdb/ChangeLog:

        * nat/linux-procfs.c (linux_proc_attach_tgid_threads):
        Remove trailing new-line in argument of call to warning.
This commit is contained in:
Joel Brobecker 2015-01-13 14:36:34 +04:00
parent f71f0b0d6b
commit 92fc2e6978
2 changed files with 6 additions and 1 deletions

View File

@ -1,3 +1,8 @@
2015-01-13 Joel Brobecker <brobecker@adacore.com>
* nat/linux-procfs.c (linux_proc_attach_tgid_threads):
Remove trailing new-line in argument of call to warning.
2015-01-13 Joel Brobecker <brobecker@adacore.com>
* linux-nat.c (attach_proc_task_lwp_callback): Remove trailing

View File

@ -212,7 +212,7 @@ linux_proc_attach_tgid_threads (pid_t pid,
dir = opendir (pathname);
if (dir == NULL)
{
warning (_("Could not open /proc/%ld/task.\n"), (long) pid);
warning (_("Could not open /proc/%ld/task."), (long) pid);
return;
}