From 9855a34f48acf6ae3aaeba9ec37756da41507e64 Mon Sep 17 00:00:00 2001 From: Matthias Schiffer Date: Sun, 24 Aug 2014 21:06:09 +0200 Subject: Coding style: always add a space between a pointer's type and the * --- src/hash.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/hash.h') diff --git a/src/hash.h b/src/hash.h index 7a8c79b..d16c3c6 100644 --- a/src/hash.h +++ b/src/hash.h @@ -43,7 +43,7 @@ static inline void fastd_hash(uint32_t *hash, const void *data, size_t len) { size_t i; for (i = 0; i < len; ++i) { - *hash += ((uint8_t*)data)[i]; + *hash += ((uint8_t *)data)[i]; *hash += (*hash << 10); *hash ^= (*hash >> 6); } -- cgit v1.2.3