--- quasar-1.4.3_GPL/utility/sha1.cpp 2004-01-11 01:41:26.000000000 +0200 +++ quasar-1.4.3_GPL.amd64/utility/sha1.cpp 2005-04-07 22:14:42.000000000 +0200 @@ -38,10 +38,10 @@ void SHA1Transform(uint32_t state[5], const uint8_t buffer[64]) { -unsigned long a, b, c, d, e; +uint32_t a, b, c, d, e; typedef union { - unsigned char c[64]; - unsigned long l[16]; + uint8_t c[64]; + uint32_t l[16]; } CHAR64LONG16; CHAR64LONG16* block; #ifdef SHA1HANDSOFF