shell/sc_gnrc_netif: fix space after NID

All option have a space behind them. This fixes the formatting of the
NID parameter if there are options after it.
This commit is contained in:
Benjamin Valentin 2019-12-13 17:18:13 +01:00 committed by Benjamin Valentin
parent fac35644d0
commit c77119957f

View File

@ -533,7 +533,7 @@ static void _netif_list(netif_t *iface)
} }
res = netif_get_opt(iface, NETOPT_NID, 0, &u16, sizeof(u16)); res = netif_get_opt(iface, NETOPT_NID, 0, &u16, sizeof(u16));
if (res >= 0) { if (res >= 0) {
printf(" NID: 0x%" PRIx16, u16); printf(" NID: 0x%" PRIx16 " ", u16);
} }
#ifdef MODULE_GNRC_NETIF_CMD_LORA #ifdef MODULE_GNRC_NETIF_CMD_LORA
res = netif_get_opt(iface, NETOPT_BANDWIDTH, 0, &u8, sizeof(u8)); res = netif_get_opt(iface, NETOPT_BANDWIDTH, 0, &u8, sizeof(u8));