diff options
author | Sam Mendoza-Jonas <sam@mendozajonas.com> | 2016-02-10 15:28:49 +1100 |
---|---|---|
committer | Sam Mendoza-Jonas <sam@mendozajonas.com> | 2016-02-10 16:21:08 +1100 |
commit | 7460bbb60ff7070c6884b700fc6370cd58703c4b (patch) | |
tree | 350c7d534104f356d26c50fc6e5c912b81f3eee7 | |
parent | d531395a3ff60730238854b127925978f6eab289 (diff) | |
download | talos-petitboot-7460bbb60ff7070c6884b700fc6370cd58703c4b.tar.gz talos-petitboot-7460bbb60ff7070c6884b700fc6370cd58703c4b.zip |
ui/ncurses: Add missing newline in nc-sysinfo
Signed-off-by: Sam Mendoza-Jonas <sam@mendozajonas.com>
-rw-r--r-- | ui/ncurses/nc-sysinfo.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/ui/ncurses/nc-sysinfo.c b/ui/ncurses/nc-sysinfo.c index ca609cc..5d64550 100644 --- a/ui/ncurses/nc-sysinfo.c +++ b/ui/ncurses/nc-sysinfo.c @@ -112,6 +112,7 @@ static void sysinfo_screen_populate(struct sysinfo_screen *screen, } if (sysinfo->bmc_mac) { + line(NULL); mac_str(sysinfo->bmc_mac, HWADDR_SIZE, macbuf, sizeof(macbuf)); line(_("Management (BMC) interface")); line(_(" MAC: %s"), macbuf); |