aboutsummaryrefslogtreecommitdiff
path: root/networking/interface.c
diff options
context:
space:
mode:
Diffstat (limited to 'networking/interface.c')
-rw-r--r--networking/interface.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/networking/interface.c b/networking/interface.c
index 61ce12ef1..471ac529e 100644
--- a/networking/interface.c
+++ b/networking/interface.c
@@ -937,7 +937,7 @@ static void ife_print(struct interface *ptr)
937 printf("(auto)"); 937 printf("(auto)");
938 } 938 }
939#endif 939#endif
940 puts(""); 940 bb_putchar('\n');
941 941
942 if (ptr->has_ip) { 942 if (ptr->has_ip) {
943 printf(" %s addr:%s ", ap->name, 943 printf(" %s addr:%s ", ap->name,
@@ -1073,7 +1073,7 @@ static void ife_print(struct interface *ptr)
1073 if (ptr->outfill || ptr->keepalive) 1073 if (ptr->outfill || ptr->keepalive)
1074 printf(" Outfill:%d Keepalive:%d", ptr->outfill, ptr->keepalive); 1074 printf(" Outfill:%d Keepalive:%d", ptr->outfill, ptr->keepalive);
1075#endif 1075#endif
1076 puts(""); 1076 bb_putchar('\n');
1077 1077
1078 /* If needed, display the interface statistics. */ 1078 /* If needed, display the interface statistics. */
1079 1079
@@ -1122,9 +1122,9 @@ static void ife_print(struct interface *ptr)
1122 } 1122 }
1123 if (ptr->map.dma) 1123 if (ptr->map.dma)
1124 printf("DMA chan:%x ", ptr->map.dma); 1124 printf("DMA chan:%x ", ptr->map.dma);
1125 puts(""); 1125 bb_putchar('\n');
1126 } 1126 }
1127 puts(""); 1127 bb_putchar('\n');
1128} 1128}
1129 1129
1130 1130