diff options
author | Joel Brobecker <brobecker@adacore.com> | 2015-01-13 14:36:34 +0400 |
---|---|---|
committer | Joel Brobecker <brobecker@adacore.com> | 2015-01-13 14:38:19 +0400 |
commit | 92fc2e6978d9a7c8324c7e851dbee59e22ec7a37 (patch) | |
tree | dd1cc9e4cabb464e0605f474297f6ba0b47420c4 /gdb/nat | |
parent | f71f0b0d6b1214d4ee8466baa9d98f345de98cbd (diff) | |
download | gdb-92fc2e6978d9a7c8324c7e851dbee59e22ec7a37.zip gdb-92fc2e6978d9a7c8324c7e851dbee59e22ec7a37.tar.gz gdb-92fc2e6978d9a7c8324c7e851dbee59e22ec7a37.tar.bz2 |
[ARI] Remove trailing new-line in argument of call to warning.gdb-7.9-branchpoint
gdb/ChangeLog:
* nat/linux-procfs.c (linux_proc_attach_tgid_threads):
Remove trailing new-line in argument of call to warning.
Diffstat (limited to 'gdb/nat')
-rw-r--r-- | gdb/nat/linux-procfs.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/nat/linux-procfs.c b/gdb/nat/linux-procfs.c index 00b6a70..5dd2b92 100644 --- a/gdb/nat/linux-procfs.c +++ b/gdb/nat/linux-procfs.c @@ -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; } |