mirror of
https://gitlab.uni-freiburg.de/opensourcevdi/spice
synced 2026-01-11 16:55:33 +00:00
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:
parent
49c0d2e698
commit
3a5fb1c5e5
@ -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;}
|
||||
|
||||
/*
|
||||
|
||||
Loading…
Reference in New Issue
Block a user