summaryrefslogtreecommitdiff
path: root/fitz/crypt_md5.c
diff options
context:
space:
mode:
Diffstat (limited to 'fitz/crypt_md5.c')
-rw-r--r--fitz/crypt_md5.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/fitz/crypt_md5.c b/fitz/crypt_md5.c
index d4043550..37f6c776 100644
--- a/fitz/crypt_md5.c
+++ b/fitz/crypt_md5.c
@@ -99,9 +99,9 @@ static void decode(unsigned int *output, const unsigned char *input, const unsig
for (i = 0, j = 0; j < len; i++, j += 4)
{
output[i] = ((unsigned int)input[j]) |
- (((unsigned int)input[j+1]) << 8) |
- (((unsigned int)input[j+2]) << 16) |
- (((unsigned int)input[j+3]) << 24);
+ (((unsigned int)input[j+1]) << 8) |
+ (((unsigned int)input[j+2]) << 16) |
+ (((unsigned int)input[j+3]) << 24);
}
}