X-Git-Url: http://nsz.repo.hu/git/?a=blobdiff_plain;f=ir%2Fadt%2Fpmap.c;h=caa6fc1d82dd9724bfd0562950450c4cd6f05b49;hb=dbce362ff915753bf77eb5a923e35d3f81fd190d;hp=75bf2806766b844ac162b8a1fd0594a8bb299fe6;hpb=57d365a67aaef76497b85e9a18b785c562652b16;p=libfirm diff --git a/ir/adt/pmap.c b/ir/adt/pmap.c index 75bf28067..caa6fc1d8 100644 --- a/ir/adt/pmap.c +++ b/ir/adt/pmap.c @@ -1,5 +1,5 @@ /* - * Copyrigth (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; }