From fe425c89a0080e781a6fb67e36d050c74cb50c09 Mon Sep 17 00:00:00 2001 From: John Darrington Date: Sat, 18 Sep 2010 16:26:15 +0200 Subject: [PATCH] Remove gettext markup from diagnostic string. Markin a debug string for translattion just puts unnecessary load on the translators. --- src/libpspp/hash.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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"); -- 2.30.2