Index: src/libchcore/TOverlappedDataBuffer.cpp
===================================================================
diff -u -rbef894e38e5c1486824787cf8c47a87a0828b228 -r685d0da3259dd94327ee8d644a88c155585b8249
--- src/libchcore/TOverlappedDataBuffer.cpp	(.../TOverlappedDataBuffer.cpp)	(revision bef894e38e5c1486824787cf8c47a87a0828b228)
+++ src/libchcore/TOverlappedDataBuffer.cpp	(.../TOverlappedDataBuffer.cpp)	(revision 685d0da3259dd94327ee8d644a88c155585b8249)
@@ -27,16 +27,16 @@
 
 namespace chcore
 {
-	bool CompareBufferPositions::operator()(const TOverlappedDataBuffer* pBufferA, const TOverlappedDataBuffer* pBufferB) const
-	{
-		if(!pBufferA)
-			throw TCoreException(eErr_InvalidArgument, L"pBufferA", LOCATION);
-		if(!pBufferB)
-			throw TCoreException(eErr_InvalidArgument, L"pBufferB", LOCATION);
-
-		return pBufferA->GetFilePosition() < pBufferB->GetFilePosition();
-	}
-
+	bool CompareBufferPositions::operator()(const TOverlappedDataBuffer* pBufferA, const TOverlappedDataBuffer* pBufferB) const
+	{
+		if(!pBufferA)
+			throw TCoreException(eErr_InvalidArgument, L"pBufferA", LOCATION);
+		if(!pBufferB)
+			throw TCoreException(eErr_InvalidArgument, L"pBufferB", LOCATION);
+
+		return pBufferA->GetFilePosition() < pBufferB->GetFilePosition();
+	}
+
 	TOverlappedDataBuffer::TOverlappedDataBuffer(size_t stBufferSize, void* pParam) :
 		m_pParam(pParam)
 	{