From 3a5fb1c5e5022d1f77bb6de6097ac4d16294a2d0 Mon Sep 17 00:00:00 2001 From: Frediano Ziglio Date: Fri, 21 Aug 2015 09:23:28 +0100 Subject: [PATCH] remove wrong statement terminator from preprocessor macro Actually not causing problems as when used is always followed by another terminator but better to fix the definition. Signed-off-by: Frediano Ziglio Acked-by: Pavel Grunt --- server/glz_encode_tmpl.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server/glz_encode_tmpl.c b/server/glz_encode_tmpl.c index 89092a97..46dd1d4e 100644 --- a/server/glz_encode_tmpl.c +++ b/server/glz_encode_tmpl.c @@ -18,7 +18,7 @@ #include #endif -#define DJB2_START 5381; +#define DJB2_START 5381 #define DJB2_HASH(hash, c) (hash = ((hash << 5) + hash) ^ (c)) //|{hash = ((hash << 5) + hash) + c;} /*