diff --git a/scanner/scanner.c b/scanner/scanner.c index 949142d..b07456a 100644 --- a/scanner/scanner.c +++ b/scanner/scanner.c @@ -198,7 +198,7 @@ long int DBSCAN(Face **ppFaces, long int faceCount, double eps, int minPts) { freeChain(pSubNeighbors); pSubNeighbors = RangeQuery(ppFaces, faceCount, pQ, threshold); neighborCount = chainLength(pSubNeighbors); - fprintf(stderr, "With eps of %f, %ld has %ld neighbors.\n", threshold, pQ->faceId, neighborCount); + fprintf(stderr, "\rWith eps of %f, %ld has %ld neighbors.", threshold, pQ->faceId, neighborCount); } if (neighborCount >= minPts) {