From f9ee82b53555083a221eac8d10e9ac1157438260 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Juhani=20Krekel=C3=A4?= Date: Thu, 4 Jul 2019 00:28:53 +0300 Subject: [PATCH] Add space between hex ethertype and explanation --- ethertype-dump.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ethertype-dump.c b/ethertype-dump.c index 703d5c8..c7966a4 100644 --- a/ethertype-dump.c +++ b/ethertype-dump.c @@ -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"); } }