summaryrefslogtreecommitdiff
path: root/src/crc32.c
diff options
context:
space:
mode:
authorIngo Huerner <ingo.huerner@xse.de>2013-11-26 14:57:52 +0100
committerIngo Huerner <ingo.huerner@xse.de>2013-11-26 14:57:52 +0100
commitcc29af37f108676ba6cdac4ac0531f6b7db9c263 (patch)
treed8b53415bc60302e6e202278e9c39d03b817e45e /src/crc32.c
parentacb1055872cae0940eb4d3f3c9e256a984ac81ce (diff)
downloadpersistence-client-library-cc29af37f108676ba6cdac4ac0531f6b7db9c263.tar.gz
Corrected error codes in doxygen function doc; corrected problem with return value when using write key function for shared values
Diffstat (limited to 'src/crc32.c')
-rw-r--r--src/crc32.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/crc32.c b/src/crc32.c
index 4283358..ad325ad 100644
--- a/src/crc32.c
+++ b/src/crc32.c
@@ -107,7 +107,7 @@ static unsigned int crc32_tab[] =
0xb40bbe37, 0xc30c8ea1, 0x5a05df1b, 0x2d02ef8d
};
-const unsigned int crc32(unsigned int crc, const unsigned char *buf, size_t theSize)
+const unsigned int pclCrc32(unsigned int crc, const unsigned char *buf, size_t theSize)
{
const unsigned char *p = 0;
unsigned int rval = 0;