net: Fix incorrect logging format specifiers

Following commit fc21a76db6
Some more fixes are needed.

Change-Id: I19c2c979d44be5edfd76041d3cf4507860795c78
Signed-off-by: Tomasz Bursztyka <tomasz.bursztyka@linux.intel.com>
This commit is contained in:
Tomasz Bursztyka 2016-12-08 10:36:27 +01:00 committed by Anas Nashif
commit 353cd721a9
3 changed files with 7 additions and 7 deletions

View file

@ -195,8 +195,8 @@ static inline void net_analyze_stack(const char *name,
net_analyze_stack_get_values(stack, size, &stack_offset,
&pcnt, &unused);
NET_INFO("net (%p): %s stack real size %u "
"unused %u usage %u/%u (%u %%)",
NET_INFO("net (%p): %s stack real size %zu "
"unused %u usage %zu/%zu (%u %%)",
k_current_get(), name,
size + stack_offset, unused, size - unused, size, pcnt);
}