A minor stylistic change to make it more clear to lint-like tools.

This commit is contained in:
Poul-Henning Kamp 2003-02-02 18:15:28 +00:00
parent f77f2ccb90
commit 7f1d66b53a

@ -1611,14 +1611,14 @@ pppdumpm(m0)
u_char *rptr = (u_char *)m->m_data;
while (l--) {
if (bp > buf + sizeof(buf) - 4)
if (bp > buf + (sizeof(buf) - 4))
goto done;
*bp++ = hex2ascii(*rptr >> 4);
*bp++ = hex2ascii(*rptr++ & 0xf);
}
if (m->m_next) {
if (bp > buf + sizeof(buf) - 3)
if (bp > buf + (sizeof(buf) - 3))
goto done;
*bp++ = '|';
} else