<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">--- bin/dumprecs.cpp.orig	2012-07-27 12:55:00.000000000 +0200
+++ bin/dumprecs.cpp	2012-07-27 13:32:01.000000000 +0200
@@ -84,9 +84,9 @@
     }
 
     std::cout &lt;&lt; "Processing file sequentially from beginning..." &lt;&lt; std::endl;
-    int i = 0;
-    while(i&lt;MyFile.NoOfRecords()){
-      rc = MyFile.DumpRecord(++i);
+    int j = 0;
+    while(j&lt;MyFile.NoOfRecords()){
+      rc = MyFile.DumpRecord(++j);
       if( rc != XB_NO_ERROR )
         x.DisplayError( rc );
     }
</pre></body></html>