From 2a7c52031aa0096b4f20ec1dd72e5f6e08a19aa9 Mon Sep 17 00:00:00 2001 From: Mark Wooding Date: Sat, 21 May 2011 00:53:37 +0100 Subject: [PATCH] ghash.h: Fix GH_HASHSTR64*. These were bogus redefinitions of GH_HASHSTR32* due to a stupid copy-and-paste error. --- ghash.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/ghash.h b/ghash.h index 83b2287..d20aff4 100644 --- a/ghash.h +++ b/ghash.h @@ -115,9 +115,9 @@ typedef struct ghash_ops { #define GH_HASHSTR32_L(h, p) GH_HASHSTR_((h), (p), 32_L) #define GH_HASHSTR32_B(h, p) GH_HASHSTR_((h), (p), 32_B) #ifdef HAVE_UINT64 -# define GH_HASHSTR32(h, p) GH_HASHSTR_((h), (p), 64) -# define GH_HASHSTR32_L(h, p) GH_HASHSTR_((h), (p), 64_L) -# define GH_HASHSTR32_B(h, p) GH_HASHSTR_((h), (p), 64_B) +# define GH_HASHSTR64(h, p) GH_HASHSTR_((h), (p), 64) +# define GH_HASHSTR64_L(h, p) GH_HASHSTR_((h), (p), 64_L) +# define GH_HASHSTR64_B(h, p) GH_HASHSTR_((h), (p), 64_B) #endif #define GH_HASHSTRZ(h, p) do { \ -- 2.11.0