Fixed an operator-precedence problem in the batch-mode code.

This commit is contained in:
Wayne Davison
2003-10-13 23:46:08 +00:00
parent 8a97fc2e1b
commit 2a88a8cd30

View File

@@ -211,7 +211,7 @@ send_deflated_token(int f, int token,
write_byte(f, n >> 8);
if (write_batch) {
write_batch_delta_file((char *)&n,sizeof(char));
temp_byte = (char) n >> 8;
temp_byte = (char)(n >> 8);
write_batch_delta_file(&temp_byte,sizeof(temp_byte));
}
}