summaryrefslogtreecommitdiffstats
path: root/package/source/zipapi/CRC32.cxx
diff options
context:
space:
mode:
authorMartin Gallwey <mtg@openoffice.org>2000-11-16 10:55:52 +0000
committerMartin Gallwey <mtg@openoffice.org>2000-11-16 10:55:52 +0000
commit05ac3fe285dd77e0fc636af6ea5f6fea568a9d1d (patch)
tree0aee68eedcc2c1ab7d7e4484c1a0a87bf6922f6c /package/source/zipapi/CRC32.cxx
parentInitial revision. This version is at best 50% functional, and contains (diff)
downloadcore-05ac3fe285dd77e0fc636af6ea5f6fea568a9d1d.tar.gz
core-05ac3fe285dd77e0fc636af6ea5f6fea568a9d1d.zip
Added 50% functional generic package implementation and added support
for un-deflated streams to EntryInputStream. This will require further work RSN.
Diffstat (limited to 'package/source/zipapi/CRC32.cxx')
-rw-r--r--package/source/zipapi/CRC32.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/package/source/zipapi/CRC32.cxx b/package/source/zipapi/CRC32.cxx
index bca9154af66f..ca866f761fc5 100644
--- a/package/source/zipapi/CRC32.cxx
+++ b/package/source/zipapi/CRC32.cxx
@@ -2,9 +2,9 @@
*
* $RCSfile: CRC32.cxx,v $
*
- * $Revision: 1.1 $
+ * $Revision: 1.2 $
*
- * last change: $Author: mtg $ $Date: 2000-11-13 13:38:01 $
+ * last change: $Author: mtg $ $Date: 2000-11-16 11:55:52 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -81,7 +81,7 @@ void CRC32::reset()
}
sal_Int32 CRC32::getValue()
{
- return (sal_Int32) nCRC & 0xFFFFFFFFL;
+ return nCRC & 0xFFFFFFFFL;
}
/** Update CRC32 with specified byte
*/