[comp.sources.games.bugs] Nethack 3.0 bug

rainwatr@ucunix.SAN.UC.EDU (Don Rainwater) (08/11/89)

	This bug may have been posted already, but I haven't seen it
yet.  The problem lies in src/do_wear.c at line 1349.  The offending
line is as follows:

	otmp = (struc
t obj *) 0;

	The line should be:

	otmp = (struct obj *) 0;

	This error apparently was not corrected by the first patch kit,
since I found it after applying the patches.  This was on a SysV
machine.  Come to think of it, I don't remember getting this error when
I built the original (unpatched) release on my Ultrix system.  Is this
specific to sysv, or was it introduced by the patch kit?