[net.bugs.usg] More errors in Sep 84 SUN

gwyn@brl-tgr.ARPA (Doug Gwyn <gwyn>) (11/01/84)

The September 1984 UNIX System Support and Update News also contains
the following error.

Page 10:

	In Call # 204217, there is an error in the suggested bug fix
		>	rc = pow( r, c );	/* rc = r^c */
	since c is a long and pow()'s arguments are doubles.  This
	line should be
		>	rc = pow( r, (double)c );