Path: utzoo!attcan!utgpu!jarvis.csri.toronto.edu!mailrus!tut.cis.ohio-state.edu!uccba!ucunix!rainwatr
From: rainwatr@ucunix.SAN.UC.EDU (Don Rainwater)
Newsgroups: comp.sources.games.bugs
Subject: Nethack 3.0 bug
Keywords: do_wear.c
Message-ID: <28@ucunix.SAN.UC.EDU>
Date: 11 Aug 89 16:30:21 GMT
Organization: University of Cincinnati
Lines: 17


	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?