summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrew Bartlett <abartlet@samba.org>2003-03-18 12:12:14 +0000
committerAndrew Bartlett <abartlet@samba.org>2003-03-18 12:12:14 +0000
commit6cbe33161d195c720aaa7149d082ee72ca222c07 (patch)
treefcf476932368dfdc52278bef0f7565caa3506f10
parentf2a387e51642d5c3d2cba6f37d235e54a5014faf (diff)
downloadsamba-6cbe33161d195c720aaa7149d082ee72ca222c07.tar.gz
samba-6cbe33161d195c720aaa7149d082ee72ca222c07.tar.bz2
samba-6cbe33161d195c720aaa7149d082ee72ca222c07.zip
Add const.
(This used to be commit 38a6ad95d789b3ece7a8e697195c8851663b3cd9)
-rw-r--r--source3/lib/crc32.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/source3/lib/crc32.c b/source3/lib/crc32.c
index bd4f1633e5..da3aeaa901 100644
--- a/source3/lib/crc32.c
+++ b/source3/lib/crc32.c
@@ -8,7 +8,7 @@
#include "includes.h"
-static unsigned long CRCTable[256] =
+static const unsigned long CRCTable[256] =
{
0x00000000,0x77073096,0xEE0E612C,0x990951BA,0x076DC419,0x706AF48F,
0xE963A535,0x9E6495A3,0x0EDB8832,0x79DCB8A4,0xE0D5E91E,0x97D2D988,
@@ -55,7 +55,7 @@ static unsigned long CRCTable[256] =
0xB40BBE37,0xC30C8EA1,0x5A05DF1B,0x2D02EF8D
};
-uint32 crc32_calc_buffer( char *buffer, uint32 count)
+uint32 crc32_calc_buffer( const char *buffer, uint32 count)
{
uint32 crc=0xffffffff, i;
for(i=0;i<count;i++)