Просмотр исходного кода

libdpkg: Unmark debug message for translation

Reported-by: Andrei Popescu <andreimpopescu@gmail.com>
Guillem Jover лет назад: 15
Родитель
Сommit
3fa386596d
1 измененных файлов с 4 добавлено и 1 удалено
  1. 4 1
      lib/dpkg/database.c

+ 4 - 1
lib/dpkg/database.c

@@ -211,7 +211,10 @@ void hashreport(FILE *file) {
     freq[c]++;
   }
   for (i=npackages; i>0 && freq[i]==0; i--);
-  while (i>=0) { fprintf(file,_("size %7d occurs %5d times\n"),i,freq[i]); i--; }
+  while (i >= 0) {
+    fprintf(file, "size %7d occurs %5d times\n", i, freq[i]);
+    i--;
+  }
 
   m_output(file, "<hash report>");