Path: utzoo!attcan!uunet!van-bc!ubc-cs!buchanan From: buchanan@cs.ubc.ca (John (juancho) buchanan) Newsgroups: comp.sys.sgi Subject: Possible bug in 4Dgifts src code Message-ID: <10137@ubc-cs.UUCP> Date: 18 Oct 90 16:34:54 GMT Sender: news@cs.ubc.ca Organization: GraFiC/Imager UBC, DCS, Vancouver, B.C., Canada Lines: 32 I found this little piece of code in the rct.c file in the libgutil directory The IBM compiler complained about it and I can see why. rctcopy(scr,dst) rct *scr, *dst; { register rct *src, *dst; *dst = *scr; } I replaced it with this, I would assume that this is ok? rctcopy(scr,dst) rct *scr, *dst; { /* register rct *src, *dst; */ /* IBM complained about this */ *dst = *scr; } ========================================================================= | |===============================| | John Buchanan (juancho) | buchanan@cs.ubc.ca | | Imager Manager |===============================| | Imager | (604) 228-2218 | | Department of Computer Science |===============================| | University of British Columbia | Standard disclaimer | | Vancouver, BC, Canada | included in this | | | box, right here. | =========================================================================