X-Git-Url: http://nsz.repo.hu/git/?a=blobdiff_plain;f=ir%2Fadt%2Fpmap.c;h=caa6fc1d82dd9724bfd0562950450c4cd6f05b49;hb=dbce362ff915753bf77eb5a923e35d3f81fd190d;hp=e16ad06d3b3a5b8f5879eece943a03d68f89ced0;hpb=974215da1a935f250766874d0f7a7ddfa34bc4ef;p=libfirm diff --git a/ir/adt/pmap.c b/ir/adt/pmap.c index e16ad06d3..caa6fc1d8 100644 --- a/ir/adt/pmap.c +++ b/ir/adt/pmap.c @@ -1,5 +1,5 @@ /* - * Copyright (C) 1995-2007 University of Karlsruhe. All right reserved. + * Copyright (C) 1995-2008 University of Karlsruhe. All right reserved. * * This file is part of libFirm. * @@ -51,6 +51,7 @@ struct pmap { static int pmap_entry_cmp(const void *p1, const void *p2, size_t size) { const pmap_entry *entry1 = p1; const pmap_entry *entry2 = p2; + (void) size; return entry1->key != entry2->key; }