about summary refs log tree commit diff stats
path: root/tcoin.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'tcoin.cpp')
-rw-r--r--tcoin.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/tcoin.cpp b/tcoin.cpp
index 9370bd0..5748bdd 100644
--- a/tcoin.cpp
+++ b/tcoin.cpp
@@ -447,7 +447,7 @@ bool files_are_same(const char* file_path1, const char* file_path2)
 
   char c1;
   char c2;
-  while(fin1.get(c1) && fin2.get(c2)) //we need to go inside the loop body even if one of the reads fails, so we use || instead of &&
+  while(fin1.get(c1) && fin2.get(c2))
   {
     if(c2 != c1)
       return false;