Remove gettext markup from diagnostic string.
authorJohn Darrington <john@darrington.wattle.id.au>
Sat, 18 Sep 2010 14:26:15 +0000 (16:26 +0200)
committerJohn Darrington <john@darrington.wattle.id.au>
Sat, 18 Sep 2010 14:26:15 +0000 (16:26 +0200)
Markin a debug string for translattion just puts unnecessary
load on the translators.

src/libpspp/hash.c

index eb43b54e7fedf24d7db0dd569cc34d885bb91dd4..9101d1f19eea6574e6a659c94b19b6b4780f9158 100644 (file)
@@ -542,7 +542,7 @@ hsh_dump (struct hsh_table *h)
   void **entry = h->entries;
   int i;
 
-  printf (_("hash table:"));
+  printf ("hash table:");
   for (i = 0; i < h->size; i++)
     printf (" %p", *entry++);
   printf ("\n");