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;} /*