projects
/
pspp-builds.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
99918a5
)
Remove gettext markup from diagnostic string.
author
John Darrington
<john@darrington.wattle.id.au>
Sat, 18 Sep 2010 14:26:15 +0000
(16:26 +0200)
committer
John 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
patch
|
blob
|
history
diff --git
a/src/libpspp/hash.c
b/src/libpspp/hash.c
index eb43b54e7fedf24d7db0dd569cc34d885bb91dd4..9101d1f19eea6574e6a659c94b19b6b4780f9158 100644
(file)
--- 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");