Add space between hex ethertype and explanation

This commit is contained in:
Juhani Krekelä 2019-07-04 00:28:53 +03:00
parent 3f571bdb27
commit f9ee82b535
1 changed files with 1 additions and 1 deletions

View File

@ -114,7 +114,7 @@ int main(int argc, char **argv) {
err(1, "printf");
}
} else {
if (printf("(%s), length: %zd\n", ethertype_meaning, frame_length) == -1) {
if (printf(" (%s), length: %zd\n", ethertype_meaning, frame_length) == -1) {
err(1, "printf");
}
}