Skip to content

Commit

Permalink
Minor fix
Browse files Browse the repository at this point in the history
  • Loading branch information
jbo-ads committed Jan 30, 2020
1 parent 283a70a commit 44b5983
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion contrib/mapcache_detail/mapcache_detail.c
Original file line number Diff line number Diff line change
Expand Up @@ -1394,7 +1394,7 @@ int main(int argc, char * argv[])
double progz = (double)(iz - minzoom) * incz;
double progx = (double)(ix - db_region_bbox.minx) * incx;
double progy = (double)(iy - db_region_bbox.miny) * incy;
fprintf(stderr, "\033[2K In progress (z:%d x:%d y:%d): %.3f%% done\n",
fprintf(stderr, "\033[2K In progress (z:%d x:%d y:%d): %.3f%% done\r",
iz, ix, iy, (progz + progx + progy) * 100.0);
fflush(stderr);
}
Expand Down

0 comments on commit 44b5983

Please sign in to comment.