net: zoap: Cleanup use of C99 types

We introduced some see C99 types, so convert them over to the Zephyr
types.

Signed-off-by: Kumar Gala <kumar.gala@linaro.org>
This commit is contained in:
Kumar Gala 2017-05-09 08:36:08 -05:00 committed by Anas Nashif
commit 18e7769431

View file

@ -210,7 +210,7 @@ enum zoap_block_size default_block_size(void)
static void add_to_net_buf(struct net_buf *buf, const char *str, u16_t len,
u16_t *remaining, size_t *offset, size_t current)
{
uint16_t pos;
u16_t pos;
char *ptr;
if (!*remaining) {