From 7d5a856ef5b3f27ffa8a5c0765f6677313e90ab4 Mon Sep 17 00:00:00 2001 From: Mark Wooding Date: Sat, 21 May 2011 00:55:19 +0100 Subject: [PATCH] tiger-mktab.c: Don't have printf swallow a kludge64 whole. If a 64-bit type was actually found, we tried to feed the containing kludge64 structure to printf while printing the table, rather than just the 64-bit number inside. This was silly. --- tiger-mktab.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tiger-mktab.c b/tiger-mktab.c index 4ba0ffb..222c523 100644 --- a/tiger-mktab.c +++ b/tiger-mktab.c @@ -121,7 +121,7 @@ int main(void) for (i = 0; i < 4; i++) { for (j = 0; j < 256; j++) { #ifdef HAVE_UINT64 - printf("{ 0x%016llxull }", s[i][j]); + printf("{ 0x%016llxull }", s[i][j].i); #else printf("{ 0x%08lx, 0x%08lx }", (unsigned long)s[i][j].hi, (unsigned long)s[i][j].lo); -- 2.11.0