1
0
mirror of https://git.FreeBSD.org/src.git synced 2024-12-16 10:20:30 +00:00

Use __func__ and break a long line.

This commit is contained in:
Dag-Erling Smørgrav 2002-10-30 15:01:29 +00:00
parent a23add744c
commit a49b853d94
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=106207

View File

@ -152,12 +152,11 @@ _http_new_chunk(struct httpio *io)
if (fetchDebug) {
io->total += io->chunksize;
if (io->chunksize == 0)
fprintf(stderr, "_http_fillbuf(): "
"end of last chunk\n");
fprintf(stderr, "%s(): end of last chunk\n", __func__);
else
fprintf(stderr, "_http_fillbuf(): "
"new chunk: %lu (%lu)\n",
(unsigned long)io->chunksize, (unsigned long)io->total);
fprintf(stderr, "%s(): new chunk: %lu (%lu)\n",
__func__, (unsigned long)io->chunksize,
(unsigned long)io->total);
}
#endif