X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Flibpspp%2Fhash.c;h=f2d99e3a8f31204d9a93d48cc1208695bff78713;hb=52c400a0ac67e4a43c5cae5a0d40e1452326240c;hp=eb43b54e7fedf24d7db0dd569cc34d885bb91dd4;hpb=c3ac5a8af9c449072c7e872ca70a78c1755ae309;p=pspp-builds.git diff --git a/src/libpspp/hash.c b/src/libpspp/hash.c index eb43b54e..f2d99e3a 100644 --- a/src/libpspp/hash.c +++ b/src/libpspp/hash.c @@ -15,18 +15,18 @@ along with this program. If not, see . */ #include -#include -#include "hash.h" -#include "message.h" + #include #include #include #include + #include "array.h" #include "compiler.h" +#include "hash.h" #include "misc.h" -#include "str.h" #include "pool.h" +#include "str.h" #include "xalloc.h" @@ -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");