p. 638: In the secand paragraph, change "inside a C native metho;" to "inside a C native method".
p. 640: The Java program referred to incorrectly as Listing 19-8 is missing. Here it is
package numbers;
public class RevisedSums {
static {
System.loadLibrary("numbers");
}
public static void main(String[] args) {
Sums s = new Sums();
int result = s.firstNonSquareSum();
System.out.println(result + " is not the sum of three squares.");
}
public native int firstNonTripleSum(int power);
}
p. 651: Change
LongVector = (*jne)->NewObject(jne, LongID, "<init>", size);
to
LongVector = (*jne)->NewObject(jne, LongID, VectorConstructorID, size);
o