aboutsummaryrefslogtreecommitdiff
path: root/gdb/python
diff options
context:
space:
mode:
authorJoel Brobecker <brobecker@gnat.com>2010-04-27 16:36:02 +0000
committerJoel Brobecker <brobecker@gnat.com>2010-04-27 16:36:02 +0000
commite78f4312c58a798df3fe09566a1f714eaf61294a (patch)
tree5549eb9ec2409aad34979a3e7d16e1e304b47c22 /gdb/python
parent7ad2014ac518240a5aa8c5300a3123cfca2459b1 (diff)
downloadgdb-e78f4312c58a798df3fe09566a1f714eaf61294a.zip
gdb-e78f4312c58a798df3fe09566a1f714eaf61294a.tar.gz
gdb-e78f4312c58a798df3fe09566a1f714eaf61294a.tar.bz2
ARI warning fix.
* python/py-auto-load.c (source_section_scripts): Remove trailing new-line in i18n string.
Diffstat (limited to 'gdb/python')
-rw-r--r--gdb/python/py-auto-load.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/python/py-auto-load.c b/gdb/python/py-auto-load.c
index a06c126..932ae68 100644
--- a/gdb/python/py-auto-load.c
+++ b/gdb/python/py-auto-load.c
@@ -260,7 +260,7 @@ source_section_scripts (struct objfile *objfile, const char *source_name,
/* We don't throw an error, the program is still debuggable.
Check in_hash_table to only print the warning once. */
if (! in_hash_table)
- warning (_("%s (referenced in %s): %s\n"),
+ warning (_("%s (referenced in %s): %s"),
file, GDBPY_AUTO_SECTION_NAME, safe_strerror (errno));
continue;
}