From: Michael Beck Date: Mon, 13 Jan 2003 16:14:03 +0000 (+0000) Subject: Fixed function implemenation type X-Git-Url: http://nsz.repo.hu/git/?a=commitdiff_plain;h=a43b15ac7314af2946cbf5519f4f5e5cdc5f630e;hp=a289831abb42913eb4d26462573671b1e48afd0f;p=libfirm Fixed function implemenation type [r607] --- diff --git a/ir/common/xgprintf.c b/ir/common/xgprintf.c index 870729966..b82e8b89d 100644 --- a/ir/common/xgprintf.c +++ b/ir/common/xgprintf.c @@ -32,7 +32,7 @@ static xprintf_function *print_func[UCHAR_MAX+1]; void -xprintf_register (char spec, xprintf_function func) +xprintf_register (char spec, xprintf_function *func) { assert ((spec > 0) && !print_func[(unsigned char)spec]); print_func[(unsigned char)spec] = func;