From 1079ba704dfe37fc98f85c922ef51d9086e3c893 Mon Sep 17 00:00:00 2001
From: Alan Jack Pippin <ajp@pippin.(none)>
Date: Fri, 27 Jan 2006 13:35:16 -0700
Subject: [PATCH] Replaced tab characters with spaces in backup-status.txt
 output.

---
 main.cpp | 18 +++++++++---------
 1 file changed, 9 insertions(+), 9 deletions(-)

diff --git a/main.cpp b/main.cpp
index 638f15f..0086106 100644
--- a/main.cpp
+++ b/main.cpp
@@ -253,17 +253,17 @@ int main() {
   cerr << now << endl << endl;
 
   cerr << "Need backing up..." << endl;
-  cerr << "	Added Bytes:		" << added_bytes << endl;
-  cerr << "	Added Blocks:		" << added_blocks << endl;
-  cerr << "	Modified Bytes:		" << modified_bytes << endl;
-  cerr << "	Modified Blocks:	" << modified_blocks << endl;
-  cerr << "	  Disks Remaining:	" << disks_remaining << endl << endl;
+  cerr << "     Added Bytes:            " << added_bytes << endl;
+  cerr << "     Added Blocks:           " << added_blocks << endl;
+  cerr << "     Modified Bytes:         " << modified_bytes << endl;
+  cerr << "     Modified Blocks:        " << modified_blocks << endl;
+  cerr << "     Disks Remaining:        " << disks_remaining << endl << endl;
 
   cerr << "Will be backed up..." << endl;
-  cerr << "	Essential Bytes:	" << essential_bytes << endl;
-  cerr << "	Essential Blocks:	" << essential_blocks << endl;
-  cerr << "	Total Bytes:		" << total_bytes << endl;
-  cerr << "	Total Blocks:		" << total_blocks << endl << endl;
+  cerr << "     Essential Bytes:        " << essential_bytes << endl;
+  cerr << "     Essential Blocks:       " << essential_blocks << endl;
+  cerr << "     Total Bytes:            " << total_bytes << endl;
+  cerr << "     Total Blocks:           " << total_blocks << endl << endl;
 
   if( ! complete ) { cerr << "Backup is incomplete!" << endl; }
 
-- 
2.34.1