summaryrefslogtreecommitdiffstats
path: root/cpukit/zlib/contrib/dotzlib/DotZLib/Inflater.cs
diff options
context:
space:
mode:
Diffstat (limited to 'cpukit/zlib/contrib/dotzlib/DotZLib/Inflater.cs')
-rw-r--r--cpukit/zlib/contrib/dotzlib/DotZLib/Inflater.cs6
1 files changed, 3 insertions, 3 deletions
diff --git a/cpukit/zlib/contrib/dotzlib/DotZLib/Inflater.cs b/cpukit/zlib/contrib/dotzlib/DotZLib/Inflater.cs
index 4e60cda078..8ed5451d66 100644
--- a/cpukit/zlib/contrib/dotzlib/DotZLib/Inflater.cs
+++ b/cpukit/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();