net: shell: Correct print format specifier

Fix warning using incorrect format specifier

Change-Id: Ib6800c40b2cd769612ae6f107e41a941926d8e66
Signed-off-by: Andrei Emeltchenko <andrei.emeltchenko@intel.com>
This commit is contained in:
Andrei Emeltchenko 2017-04-19 16:51:02 +03:00 committed by Jukka Rissanen
commit 9bf3ea071a

View file

@ -1222,7 +1222,7 @@ static int shell_cmd_stacks(int argc, char *argv[])
info->size + stack_offset, unused,
info->size - unused, info->size, pcnt);
#else
printk("%s [%s] stack size %u usage not available\n",
printk("%s [%s] stack size %zu usage not available\n",
info->pretty_name, info->name, info->orig_size);
#endif
}