mirror of
https://github.com/opnsense/src.git
synced 2026-05-28 04:12:45 -04:00
tighten up printout
This commit is contained in:
parent
06647a4f76
commit
abde225be8
1 changed files with 2 additions and 4 deletions
|
|
@ -286,14 +286,12 @@ isp_print_qentry(isp, msg, idx, arg)
|
|||
{
|
||||
int amt, i, j;
|
||||
u_int8_t *ptr = arg;
|
||||
PRINTF("%s %s index %d:\n ", isp->isp_name, msg, idx);
|
||||
PRINTF("%s %s index %d:\n", isp->isp_name, msg, idx);
|
||||
for (amt = i = 0; i < 4; i++) {
|
||||
for (j = 0; j < (QENTRY_LEN >> 2); j++) {
|
||||
PRINTF(" %02x", ptr[amt++] & 0xff);
|
||||
}
|
||||
PRINTF("\n ");
|
||||
PRINTF("\n");
|
||||
}
|
||||
PRINTF("\n");
|
||||
}
|
||||
|
||||
#endif /* _ISP_INLINE_H */
|
||||
|
|
|
|||
Loading…
Reference in a new issue