summaryrefslogtreecommitdiffstatshomepage
path: root/src/osd/osdnet.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/osd/osdnet.c')
-rw-r--r--src/osd/osdnet.c7
1 files changed, 3 insertions, 4 deletions
diff --git a/src/osd/osdnet.c b/src/osd/osdnet.c
index 2af841c0c2b..b727e6b676f 100644
--- a/src/osd/osdnet.c
+++ b/src/osd/osdnet.c
@@ -119,13 +119,12 @@ void osd_list_network_adapters(void)
printf("Available network adapters:\n");
const netdev_entry_t *entry = netdev_first();
- while(entry) {
- printf(" %s\n", entry->description);
+ while(entry) {
+ printf(" %s\n", entry->description);
entry = entry->m_next;
}
-
+
#else
printf("Network is not supported in this build\n");
#endif
}
-