carl@CITHEX.CALTECH.EDU.UUCP (02/06/87)
The routine main in the DISKACCT program I sent the other day should contain the declaration/initialization: unsigned short FFFF = 0xFFFF; and the line reading: else if (header.H.FLEV & 0xFF < 1) should be replaced by: else if ((header.H.FLEV & 0xFF) < 1) The program as written doesn't include file headers in the summaries. To include file headers, count should be initialized to 1 instead of 0 in the loop that deals with retrieval pointers.