commit f78e04730e66f234bcae4603f743028d2d0fe2e2 from: Stefan Sperling date: Wed Mar 18 16:11:30 2020 UTC add missing \n in debug output commit - 3350156242bb705818218fc29cebbf2798228b94 commit + f78e04730e66f234bcae4603f743028d2d0fe2e2 blob - 0bdfc1bbd351d96517b0f716cbfebdbd855a98ce blob + 00e10587354d492da04ebdf323d1b60c08c02e08 --- libexec/got-fetch-pack/got-fetch-pack.c +++ libexec/got-fetch-pack/got-fetch-pack.c @@ -132,6 +132,7 @@ writepkt(int fd, char *buf, int nbuf) if (isprint(buf[i])) fputc(buf[i], stderr); } + fputc('\n', stderr); } return 0; }