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 <fziglio@redhat.com>
Acked-by: Pavel Grunt <pgrunt@redhat.com>
This commit is contained in:
Frediano Ziglio 2015-08-21 09:23:28 +01:00
parent 49c0d2e698
commit 3a5fb1c5e5

View File

@ -18,7 +18,7 @@
#include <config.h>
#endif
#define DJB2_START 5381;
#define DJB2_START 5381
#define DJB2_HASH(hash, c) (hash = ((hash << 5) + hash) ^ (c)) //|{hash = ((hash << 5) + hash) + c;}
/*