From cee8aedd92395f34bd7077a33eab5fe528c61387 Mon Sep 17 00:00:00 2001
From: Alan Jack Pippin <ajp@pippin.(none)>
Date: Wed, 1 Mar 2006 20:35:35 -0700
Subject: [PATCH] Removed (0 != space) check from while loop in
 copy_until_full() method.

---
 main.cpp | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/main.cpp b/main.cpp
index 0086106..80385fe 100644
--- a/main.cpp
+++ b/main.cpp
@@ -31,7 +31,7 @@ template<class I, class O, class INT>
 bool copy_until_full( I begin, I end, O out, INT &space ) {
   bool complete = true;
 
-  while( 0 != space && begin != end ) {
+  while( begin != end ) {
     INT size = (*begin)->getFileSize();
     INT blocksize = blocks( size ) * bytes_in_block;
 
-- 
2.34.1