From 05ac3fe285dd77e0fc636af6ea5f6fea568a9d1d Mon Sep 17 00:00:00 2001 From: Martin Gallwey Date: Thu, 16 Nov 2000 10:55:52 +0000 Subject: Added 50% functional generic package implementation and added support for un-deflated streams to EntryInputStream. This will require further work RSN. --- package/source/zipapi/CRC32.cxx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'package/source/zipapi/CRC32.cxx') 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 */ -- cgit