From 0084745cdbadcd2cd8b05c278d3260cbfb99bf36 Mon Sep 17 00:00:00 2001 From: cinnaboot Date: Thu, 23 Dec 2021 19:56:44 -0500 Subject: [PATCH] fix function declaration styling --- src/util.h | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/util.h b/src/util.h index 59cb9b5..fdc71f2 100644 --- a/src/util.h +++ b/src/util.h @@ -14,8 +14,7 @@ // NOTE: FNV1a hashing algorithm http://www.isthe.com/chongo/tech/comp/fnv/ #define FNV1_64_INIT ((u64) 0xcbf29ce484222325ULL) #define FNV_64_PRIME ((u64) 0x100000001b3ULL) -u64 -utilFNV64a_str(const char *str, u64 hval = FNV1_64_INIT); +u64 utilFNV64a_str(const char *str, u64 hval = FNV1_64_INIT); //----------------- // Memory allocation