summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTomasz Bursztyka <tomasz.bursztyka@linux.intel.com>2017-02-17 10:36:36 +0100
committerAnas Nashif <anas.nashif@intel.com>2017-02-22 08:47:38 -0800
commitfea57786644224d8c8cdf090f6091913727948b7 (patch)
tree780fcf62130d356cfbdc17150e4a7be1f5fba4df
parentc8c6bee8a258e359b2e84a1cf095e62c2c281e38 (diff)
net: Fix stack type
s/unsigned char/char Jira: ZEP-1723 Change-Id: I07b23b28fdb4d2f0f78dcdd314faaebec06471db Signed-off-by: Tomasz Bursztyka <tomasz.bursztyka@linux.intel.com>
-rw-r--r--include/net/net_core.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/net/net_core.h b/include/net/net_core.h
index 6a45f2eb2..f89b9cf36 100644
--- a/include/net/net_core.h
+++ b/include/net/net_core.h
@@ -88,7 +88,7 @@ int net_recv_data(struct net_if *iface, struct net_buf *buf);
int net_send_data(struct net_buf *buf);
struct net_stack_info {
- unsigned char *stack;
+ char *stack;
const char *pretty_name;
const char *name;
size_t orig_size;