Procházet zdrojové kódy

libdpkg: Unmark debug message for translation

Reported-by: Andrei Popescu <andreimpopescu@gmail.com>
Guillem Jover před 15 roky
rodič
revize
3fa386596d
1 změnil soubory, kde provedl 4 přidání a 1 odebrání
  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>");