commit e69674d80611af869c17b1ddc0b14f30896ce129 from: Stefan Sperling date: Thu Mar 19 17:49:56 2020 UTC restore missing \n in clone and fetch progress output commit - 984065c8157b64c6706177b33cfedf5863f47d8e commit + e69674d80611af869c17b1ddc0b14f30896ce129 blob - e0db90a7ad96ea19aefe46b6bd3ae0d3582c59bf blob + 9afa83c5048bc2d3f820b3b7dbd96dcfe3674aa4 --- got/got.c +++ got/got.c @@ -1051,7 +1051,7 @@ cmd_clone(int argc, char *argv[]) if (error) goto done; if (verbosity >= 0) - printf("Fetched %s.pack\n", id_str); + printf("\nFetched %s.pack\n", id_str); free(id_str); /* Set up references provided with the pack file. */ @@ -1386,7 +1386,7 @@ cmd_fetch(int argc, char *argv[]) error = got_object_id_str(&id_str, pack_hash); if (error) goto done; - printf("Fetched %s.pack\n", id_str); + printf("\nFetched %s.pack\n", id_str); free(id_str); id_str = NULL; }