Relay-Version: version B 2.10 5/3/83; site utzoo.UUCP Posting-Version: version B 2.10.2 9/18/84; site brl-tgr.ARPA Path: utzoo!watmath!clyde!burl!ulysses!allegra!mit-eddie!godot!harvard!seismo!brl-tgr!gwyn From: gwyn@brl-tgr.ARPA (Doug Gwyn ) Newsgroups: net.bugs.usg Subject: More errors in Sep 84 SUN Message-ID: <5535@brl-tgr.ARPA> Date: Wed, 31-Oct-84 22:43:58 EST Article-I.D.: brl-tgr.5535 Posted: Wed Oct 31 22:43:58 1984 Date-Received: Fri, 2-Nov-84 06:12:57 EST References: <5534@brl-tgr.ARPA> Distribution: net Organization: Ballistic Research Lab Lines: 10 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 );