]> err.no Git - dpkg/commitdiff
Add a missing newline to a warning message in dpkg. Closes: #390914
authorGuillem Jover <guillem@debian.org>
Mon, 15 Jan 2007 09:11:36 +0000 (09:11 +0000)
committerGuillem Jover <guillem@debian.org>
Mon, 15 Jan 2007 09:11:36 +0000 (09:11 +0000)
Thanks to Ian Jackson.

ChangeLog
debian/changelog
src/processarc.c

index bf3f11ff881cc7cbd924134c7abb276f6ebea644..405345242ce8d4d9e2721772e3aa7e67f1121a29 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2007-01-15  Ian Jackson  <iwj@ubuntu.com>
+
+       * src/processarc.c (process_archive): Add a missing newline to a
+       warning message.
+
 2007-01-15  Guillem Jover  <guillem@debian.org>
 
        * scripts/dpkg-gettext.pl: Remove duplicate 'use static'.
index d3e7aaac2ec727605d0f70e81f51893b571961f2..9d770b13d0aca7d8556d2bd25bb2f51494c62198 100644 (file)
@@ -12,6 +12,8 @@ dpkg (1.14.0) UNRELEASED; urgency=low
     by checking if the macro value is true instead of it being defined.
     Thanks to Mark Rosenstand.
   * Make some perl scripts use static and warnings, to ease catching errors.
+  * Add a missing newline to a warning message in dpkg. Closes: #390914
+    Thanks to Ian Jackson.
 
   [ Updated dpkg translations ]
   * Romanian (Eddy PetriČ™or).
index 537a0ecde7ebc090a414528e9b12ea6d4e50a96e..c22f623e539d6b45328c7f5f2c0eb73816f048fd 100644 (file)
@@ -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;