From 32a2bacc8d6de6ddc016dda6cccfeb74fe142449 Mon Sep 17 00:00:00 2001 From: Thomas Eichinger Date: Mon, 16 Nov 2015 16:06:13 +0100 Subject: [PATCH] shell/sc_netif: fix clang formating warning/error --- sys/shell/commands/sc_netif.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sys/shell/commands/sc_netif.c b/sys/shell/commands/sc_netif.c index 6c5e208f91..adbb72bc67 100644 --- a/sys/shell/commands/sc_netif.c +++ b/sys/shell/commands/sc_netif.c @@ -892,7 +892,7 @@ int _netif_config(int argc, char **argv) gnrc_ipv6_netif_t *entry; if (((hl = atoi(argv[3])) < 0) || (hl > UINT8_MAX)) { printf("error: Hop limit must be between %" PRIu16 " and %" PRIu16 "\n", - 0, UINT16_MAX); + (uint16_t)0, (uint16_t)UINT16_MAX); return 1; } if ((entry = gnrc_ipv6_netif_get(dev)) == NULL) {