From: John Darrington Date: Sat, 18 Sep 2010 14:26:15 +0000 (+0200) Subject: Remove gettext markup from diagnostic string. X-Git-Tag: sav-api~35 X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?p=pspp;a=commitdiff_plain;h=fe425c89a0080e781a6fb67e36d050c74cb50c09 Remove gettext markup from diagnostic string. Markin a debug string for translattion just puts unnecessary load on the translators. --- diff --git a/src/libpspp/hash.c b/src/libpspp/hash.c index eb43b54e7f..9101d1f19e 100644 --- a/src/libpspp/hash.c +++ b/src/libpspp/hash.c @@ -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");