summaryrefslogtreecommitdiff
path: root/source
diff options
context:
space:
mode:
authorRobin Watts <robin.watts@artifex.com>2016-09-14 11:59:29 +0100
committerRobin Watts <robin.watts@artifex.com>2016-09-14 12:02:43 +0100
commite31c88f59556b8dd811b0cc0c273e52c707b6c03 (patch)
tree96497e1370736d0d68ab9ef91ce2b15f062e9538 /source
parenta1a5fc2d220c66f316e4c527de4ae6719c6fba35 (diff)
downloadmupdf-e31c88f59556b8dd811b0cc0c273e52c707b6c03.tar.xz
Table should be static const.
Diffstat (limited to 'source')
-rw-r--r--source/fitz/crypt-md5.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/fitz/crypt-md5.c b/source/fitz/crypt-md5.c
index d2693b05..6826fedd 100644
--- a/source/fitz/crypt-md5.c
+++ b/source/fitz/crypt-md5.c
@@ -38,7 +38,7 @@ static void encode(unsigned char *, const unsigned int *, const unsigned);
static void decode(unsigned int *, const unsigned char *, const unsigned);
static void transform(unsigned int state[4], const unsigned char block[64]);
-static unsigned char padding[64] =
+static const unsigned char padding[64] =
{
0x80, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,