comparison tools/fanalyze.c @ 2284:519c8726b235

Remove comment.
author Matti Hamalainen <ccr@tnsp.org>
date Tue, 18 Jun 2019 07:38:05 +0300
parents a4c1fafd442a
children 180604abb65a
comparison
equal deleted inserted replaced
2274:a4c1fafd442a 2284:519c8726b235
955 dmPrint(0, 955 dmPrint(0,
956 "Processing .. %1.1f%%\r", 956 "Processing .. %1.1f%%\r",
957 (float) ss * 100.0f / (float) (nsrcFiles * (nsrcFiles - 1))); 957 (float) ss * 100.0f / (float) (nsrcFiles * (nsrcFiles - 1)));
958 ss++; 958 ss++;
959 } 959 }
960 // Find longest possible matching sequence in file2, if any 960
961 for (size_t moffs1 = 0; moffs1 + optMinMatchLen < file1->size;) 961 for (size_t moffs1 = 0; moffs1 + optMinMatchLen < file1->size;)
962 { 962 {
963 size_t cnt = 0; 963 size_t cnt = 0;
964 for (size_t moffs2 = 0; moffs2 + optMinMatchLen < file2->size; moffs2++) 964 for (size_t moffs2 = 0; moffs2 + optMinMatchLen < file2->size; moffs2++)
965 { 965 {