From: Matthias Braun Date: Mon, 18 Jun 2007 14:05:51 +0000 (+0000) Subject: fixed warnings X-Git-Url: http://nsz.repo.hu/git/?a=commitdiff_plain;h=e9924cc1137b5920e75f4b9f2e99195dce708433;p=libfirm fixed warnings [r14602] --- diff --git a/ir/ident/ident.c b/ir/ident/ident.c index efd3a0a07..634c1a1de 100644 --- a/ir/ident/ident.c +++ b/ir/ident/ident.c @@ -95,6 +95,7 @@ static ident *set_new_id_from_str(void *handle, const char *str) static const char *set_get_id_str(void *handle, ident *id) { struct set_entry *entry = (struct set_entry *)id; + (void) handle; return (const char *)entry->dptr; } @@ -110,6 +111,7 @@ static const char *set_get_id_str(void *handle, ident *id) static int set_get_id_strlen(void *handle, ident *id) { struct set_entry *entry = (struct set_entry *)id; + (void) handle; return entry->size; }