aboutsummaryrefslogtreecommitdiffstats
path: root/ui/cli/tap-hosts.c
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2014-11-23 00:20:10 -0800
committerGuy Harris <guy@alum.mit.edu>2014-11-23 20:51:05 +0000
commitda5487ff495a6c996d588b76e7d3a85d42d1d8c2 (patch)
treed45354ff57ff14970e25767525e7a6cc5363e6f5 /ui/cli/tap-hosts.c
parentb2030ca582d1299cf7b1f8c26c35bb483ce4c10e (diff)
Newlines at the ends of lines, please.
Change-Id: I7b484e3ddac7cb1330c966819514a9468ea69066 Reviewed-on: https://code.wireshark.org/review/5454 Reviewed-by: Guy Harris <guy@alum.mit.edu>
Diffstat (limited to 'ui/cli/tap-hosts.c')
-rw-r--r--ui/cli/tap-hosts.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/ui/cli/tap-hosts.c b/ui/cli/tap-hosts.c
index eb5babf8c2..6954a8c54b 100644
--- a/ui/cli/tap-hosts.c
+++ b/ui/cli/tap-hosts.c
@@ -52,7 +52,7 @@ ipv4_hash_table_print_resolved(gpointer key _U_, gpointer value, gpointer user_d
hashipv4_t *ipv4_hash_table_entry = (hashipv4_t *)value;
if ((ipv4_hash_table_entry->flags & DUMMY_ADDRESS_ENTRY) == DUMMY_ADDRESS_ENTRY) {
- printf("%s\t%s",
+ printf("%s\t%s\n",
ipv4_hash_table_entry->ip,
ipv4_hash_table_entry->name);
}
@@ -64,7 +64,7 @@ ipv6_hash_table_print_resolved(gpointer key _U_, gpointer value, gpointer user_d
hashipv6_t *ipv6_hash_table_entry = (hashipv6_t *)value;
if ((ipv6_hash_table_entry->flags & DUMMY_ADDRESS_ENTRY) == DUMMY_ADDRESS_ENTRY) {
- printf("%s\t%s",
+ printf("%s\t%s\n",
ipv6_hash_table_entry->ip6,
ipv6_hash_table_entry->name);
}