From 2a88a8cd30aaf37cb677beaab67638815130c841 Mon Sep 17 00:00:00 2001 From: Wayne Davison Date: Mon, 13 Oct 2003 23:46:08 +0000 Subject: [PATCH] Fixed an operator-precedence problem in the batch-mode code. --- token.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/token.c b/token.c index bb77cfb6..8f498f1f 100644 --- a/token.c +++ b/token.c @@ -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)); } } -- 2.34.1