Add a default case that just outputs a new line for the case of an

unknown header type.
This commit is contained in:
John Baldwin 2003-03-13 18:58:39 +00:00
parent 120a95cb50
commit b9609ab177

View File

@ -182,6 +182,9 @@ main(int argc, char *argv[])
case KTR_USER:
ktruser(ktrlen, m);
break;
default:
printf("\n");
break;
}
if (tail)
(void)fflush(stdout);