diff options
author | 2014-11-26 10:37:58 +0100 | |
---|---|---|
committer | 2014-11-26 10:37:58 +0100 | |
commit | ebeaa953a3a6ae98842b4a169bc95e5f3c673d8c (patch) | |
tree | 41959790c00308fc3cac9c71176709f53683151d /src/osd/osdnet.c | |
parent | 18b8ce2f9467ae23672cea11f4a3fc5e42e24b9c (diff) |
Cleanups and version bumpmame0156
Diffstat (limited to 'src/osd/osdnet.c')
-rw-r--r-- | src/osd/osdnet.c | 7 |
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 } - |