silly size savings and capitalization fixes

This commit is contained in:
Denis Vlasenko
2006-10-26 00:37:00 +00:00
parent e63a0dee9e
commit c6f188def8
24 changed files with 81 additions and 81 deletions

View File

@ -92,7 +92,7 @@ void bb_debug_dump_packet(unsigned char *outpack, int pktsize)
printf("packet dump:\n");
for (i = 0; i < pktsize; ++i) {
printf("%2.2x ", outpack[i]);
if (i % 20 == 19) printf("\n");
if (i % 20 == 19) puts("");
}
printf("\n\n");
}