summaryrefslogtreecommitdiffstats
path: root/common
diff options
context:
space:
mode:
authorFrediano Ziglio <fziglio@redhat.com>2016-01-26 16:33:39 +0000
committerFrediano Ziglio <fziglio@redhat.com>2016-01-26 16:45:32 +0000
commit5376f1d88c3aac5ae8f9d387aee61929f1840fa9 (patch)
tree9608b48a3cbbd8c70630d0f7a4c1da44c900e854 /common
parent0a6580d2e636749f8aa9dfc7bffcc1f2aa9114fd (diff)
downloadspice-common-5376f1d88c3aac5ae8f9d387aee61929f1840fa9.tar.gz
spice-common-5376f1d88c3aac5ae8f9d387aee61929f1840fa9.tar.xz
spice-common-5376f1d88c3aac5ae8f9d387aee61929f1840fa9.zip
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: Jonathon Jongsma <jjongsma@redhat.com>
Diffstat (limited to 'common')
-rw-r--r--common/lz_compress_tmpl.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/common/lz_compress_tmpl.c b/common/lz_compress_tmpl.c
index b5d0049..3162a96 100644
--- a/common/lz_compress_tmpl.c
+++ b/common/lz_compress_tmpl.c
@@ -44,7 +44,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;}
/*