Relay-Version: version B 2.10 5/3/83; site utzoo.UUCP
Posting-Version: version B 2.10 5/3/83; site utcsrgv.UUCP
Path: utzoo!utcsrgv!info-mac
From: info-mac@utcsrgv.UUCP (info-mac)
Newsgroups: ont.micro.mac
Subject: SUMACC bugs
Message-ID: <4634@utcsrgv.UUCP>
Date: Tue, 26-Jun-84 01:43:38 EDT
Article-I.D.: utcsrgv.4634
Posted: Tue Jun 26 01:43:38 1984
Date-Received: Tue, 26-Jun-84 07:25:19 EDT
Sender: peterr@utcsrgv.UUCP
Organization: CSRI, University of Toronto
Lines: 31

Date: Fri, 22 Jun 84 18:57:57 pdt
From: Bill Croft 
To: info-mac@sumex
Subject: SUMACC bugs
Cc: croft@SUMEX-AIM.ARPA, sumacc@sumex

Here are some bug fixes for SUMACC. 

This first bug was a glitch in the standard file SFReply structure:

+ diff h/packintf.h- h/packintf.h 
77,78c77,78
< 	short	good;		/* ignore if false */
< 	short	copy;
---
> 	char	good;		/* ignore if false */
> 	char	copy;

This was a misdeclaration of the p2cstr subroutine;  it's really a
subroutine, not a function. 

+ diff h/quickdraw.h- h/quickdraw.h 
287c287
< char	*p2cstr();		/* "casts" Pascal string into C string */
---
> void	p2cstr();		/* convert Pascal string into C string */

A tip of the hat to Bill Schilit at Columbia and Mike Schuster at CALTECH
for reporting these.