aboutsummaryrefslogtreecommitdiff
path: root/zlib/contrib/dotzlib/DotZLib/Inflater.cs
diff options
context:
space:
mode:
authorMatthias Klose <doko@ubuntu.com>2012-03-02 17:15:20 +0000
committerMatthias Klose <doko@gcc.gnu.org>2012-03-02 17:15:20 +0000
commit43743d63b3e6026088cb5bacca87ccc08acd97cd (patch)
tree08301625dedcb8a8837a464f46ca0292c54c5ecb /zlib/contrib/dotzlib/DotZLib/Inflater.cs
parent5d216c70d980e3169b42e9734cf4bea1648ff8f0 (diff)
downloadgcc-43743d63b3e6026088cb5bacca87ccc08acd97cd.zip
gcc-43743d63b3e6026088cb5bacca87ccc08acd97cd.tar.gz
gcc-43743d63b3e6026088cb5bacca87ccc08acd97cd.tar.bz2
2012-03-02 Matthias Klose <doko@ubuntu.com>
* Imported zlib 1.2.5; merged local changes. From-SVN: r184805
Diffstat (limited to 'zlib/contrib/dotzlib/DotZLib/Inflater.cs')
-rw-r--r--zlib/contrib/dotzlib/DotZLib/Inflater.cs6
1 files changed, 3 insertions, 3 deletions
diff --git a/zlib/contrib/dotzlib/DotZLib/Inflater.cs b/zlib/contrib/dotzlib/DotZLib/Inflater.cs
index 4e60cda..8ed5451 100644
--- a/zlib/contrib/dotzlib/DotZLib/Inflater.cs
+++ b/zlib/contrib/dotzlib/DotZLib/Inflater.cs
@@ -1,7 +1,7 @@
//
// © Copyright Henrik Ravn 2004
//
-// Use, modification and distribution are subject to the Boost Software License, Version 1.0.
+// Use, modification and distribution are subject to the Boost Software License, Version 1.0.
// (See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
//
@@ -11,7 +11,7 @@ using System.Runtime.InteropServices;
namespace DotZLib
{
-
+
/// <summary>
/// Implements a data decompressor, using the inflate algorithm in the ZLib dll
/// </summary>
@@ -84,7 +84,7 @@ namespace DotZLib
public override void Finish()
{
int err;
- do
+ do
{
err = inflate(ref _ztream, (int)FlushTypes.Finish);
OnDataAvailable();