summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorGuillem Jover <guillem@debian.org>2007-01-15 09:11:36 +0000
committerGuillem Jover <guillem@debian.org>2007-01-15 09:11:36 +0000
commit959255c8fc1814f7c9b9a06f6c666262796da71c (patch)
treeccc949e1b3b4c6c58d5321ce30c7bcfc2e2a41b3 /src
parentc61b44f68a6dc073bc3dc8b29371cc7c17c536a3 (diff)
downloaddpkg-959255c8fc1814f7c9b9a06f6c666262796da71c.tar.gz
Add a missing newline to a warning message in dpkg. Closes: #390914
Thanks to Ian Jackson.
Diffstat (limited to 'src')
-rw-r--r--src/processarc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/processarc.c b/src/processarc.c
index 537a0ecde..c22f623e5 100644
--- a/src/processarc.c
+++ b/src/processarc.c
@@ -672,7 +672,7 @@ void process_archive(const char *filename) {
oldfs.st_ino == cfile->namenode->filestat->st_ino) {
if (sameas)
fprintf(stderr, _("dpkg: warning - old file `%.250s' is the same"
- " as several new files! (both `%.250s' and `%.250s')"),
+ " as several new files! (both `%.250s' and `%.250s')\n"),
fnamevb.buf,
sameas->namenode->name, cfile->namenode->name);
sameas= cfile;