From ac102d3bfab19156836a12bca9e76ec9bd90d955 Mon Sep 17 00:00:00 2001 From: Anders Jenbo Date: Tue, 30 Apr 2019 20:02:22 +0200 Subject: [PATCH] Clean up sha.cpp --- Source/sha.cpp | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/Source/sha.cpp b/Source/sha.cpp index 2a4d19bd5..2e8514352 100644 --- a/Source/sha.cpp +++ b/Source/sha.cpp @@ -48,8 +48,7 @@ void SHA1Input(SHA1Context *context, const char *message_array, int len) void SHA1ProcessMessageBlock(SHA1Context *context) { - int i; - int temp; + int i, temp; int W[80]; int A, B, C, D, E;