From: Pavel Charvat Date: Tue, 8 Jul 2008 06:11:28 +0000 (+0200) Subject: Hidden one possible compilation warning in KMP. X-Git-Tag: holmes-import~404^2~4 X-Git-Url: http://mj.ucw.cz/gitweb/?a=commitdiff_plain;h=ea6220fd19b2d14383f1929e6e76bb2333bce0e9;p=libucw.git Hidden one possible compilation warning in KMP. --- diff --git a/lib/kmp.h b/lib/kmp.h index 8c8c5254..2c0633cd 100644 --- a/lib/kmp.h +++ b/lib/kmp.h @@ -214,7 +214,7 @@ P(hash_init_key) (struct P(hash_table) *t UNUSED, struct P(state) *s, struct P(s { bzero(s, sizeof(*s)); # ifdef KMP_INIT_STATE - struct P(struct) *kmp = (struct P(struct) *)t; + UNUSED struct P(struct) *kmp = (struct P(struct) *)t; { KMP_INIT_STATE(kmp, s); } # endif s->from = f;