Path: utzoo!utgpu!news-server.csri.toronto.edu!mailrus!uwm.edu!rutgers!mephisto!udel!mmdf From: HBO043%DJUKFA11.BITNET@cunyvm.cuny.edu (Christoph van Wuellen) Newsgroups: comp.os.minix Subject: c68 bug - for vincent archer Message-ID: <25807@nigel.udel.EDU> Date: 27 Jul 90 08:01:33 GMT Sender: usenet@ee.udel.EDU Lines: 14 I got your bug message. Thank you very much. The fix will be shipped out in a minute. The problem was that in C, a function name alone really is a pointer to a function name. Thus: int (*f)(); int test(); f = test; <=== is really f = &test. This gave the error message from g_cast which is unable to cast a function to a pointer. The fix is trivial, see subsequent posting. C.v.W.