From 1863c26cfc60a04491695f11df20479d8b648545 Mon Sep 17 00:00:00 2001
From: Aleksandar Fabijanic <alex@pocoproject.org>
Date: Wed, 30 May 2012 00:39:30 +0000
Subject: [PATCH] spaces to tabs

---
 Foundation/src/StreamCopier.cpp | 40 ++++++++++++++++-----------------
 1 file changed, 20 insertions(+), 20 deletions(-)

diff --git a/Foundation/src/StreamCopier.cpp b/Foundation/src/StreamCopier.cpp
index dfe0582bc..de85b172a 100644
--- a/Foundation/src/StreamCopier.cpp
+++ b/Foundation/src/StreamCopier.cpp
@@ -139,32 +139,32 @@ Poco::UInt64 StreamCopier::copyToString64(std::istream& istr, std::string& str,
 
 std::streamsize StreamCopier::copyStreamUnbuffered(std::istream& istr, std::ostream& ostr)
 {
-    char c;
-    std::streamsize len = 0;
-    istr.get(c);
-    while (istr && ostr)
-    {
-        ++len;
-        ostr.put(c);
-        istr.get(c);
-    }
-    return len;
+	char c;
+	std::streamsize len = 0;
+	istr.get(c);
+	while (istr && ostr)
+	{
+		++len;
+		ostr.put(c);
+		istr.get(c);
+	}
+	return len;
 }
 
 
 #if defined(POCO_HAVE_INT64)
 Poco::UInt64 StreamCopier::copyStreamUnbuffered64(std::istream& istr, std::ostream& ostr)
 {
-    char c;
-    Poco::UInt64 len = 0;
-    istr.get(c);
-    while (istr && ostr)
-    {
-        ++len;
-        ostr.put(c);
-        istr.get(c);
-    }
-    return len;
+	char c;
+	Poco::UInt64 len = 0;
+	istr.get(c);
+	while (istr && ostr)
+	{
+		++len;
+		ostr.put(c);
+		istr.get(c);
+	}
+	return len;
 }
 #endif