summaryrefslogtreecommitdiff
path: root/base/md5.c
diff options
context:
space:
mode:
authorTor Andersson <tor@ghostscript.com>2004-11-16 08:58:17 +0100
committerTor Andersson <tor@ghostscript.com>2004-11-16 08:58:17 +0100
commit3b425b8bf0c58e25da576ed86496171ea19240f9 (patch)
tree37d6feb715dd929392fb16fdde6cf994dfbc1397 /base/md5.c
parent49132f70ac40b2dc7b9a0e22b33a3964af687874 (diff)
downloadmupdf-3b425b8bf0c58e25da576ed86496171ea19240f9.tar.xz
removed c99-isms. improved bbox handling.
Diffstat (limited to 'base/md5.c')
-rw-r--r--base/md5.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/base/md5.c b/base/md5.c
index 648532a5..03601e5b 100644
--- a/base/md5.c
+++ b/base/md5.c
@@ -31,7 +31,7 @@ enum
S11 = 7, S12 = 12, S13 = 17, S14 = 22,
S21 = 5, S22 = 9, S23 = 14, S24 = 20,
S31 = 4, S32 = 11, S33 = 16, S34 = 23,
- S41 = 6, S42 = 10, S43 = 15, S44 = 21,
+ S41 = 6, S42 = 10, S43 = 15, S44 = 21
};
static void encode(unsigned char *, unsigned long *, unsigned);