Wichert Akkerman лет назад: 25
Родитель
Сommit
6fb39c491a
2 измененных файлов с 5 добавлено и 1 удалено
  1. 4 0
      ChangeLog
  2. 1 1
      main/enquiry.c

+ 4 - 0
ChangeLog

@@ -1,3 +1,7 @@
+Tue Apr 24 02:41:23 CEST 2001 Wichert Akkerman <wakkerma@debian.org>
+
+  * main/enquiry.c: add missing newline after error message
+
 Tue Apr 24 02:13:43 CEST 2001 Wichert Akkerman <wakkerma@debian.org>
 
   * dselect/main.cc: use myfileopt as well to read dselect.cfg

+ 1 - 1
main/enquiry.c

@@ -506,7 +506,7 @@ void enqperpackage(const char *const *argv) {
   if (failures) {
     nerrs++;
     fputs(_("Use dpkg --info (= dpkg-deb --info) to examine archive files,\n"
-         "and dpkg --contents (= dpkg-deb --contents) to list their contents."),stderr);
+         "and dpkg --contents (= dpkg-deb --contents) to list their contents.\n"),stderr);
     if (ferror(stdout)) werr("stdout");
   }
 }