commit | 8580f63ad94370acde2c281a0c7565ee6aa90e6b | [log] [tgz] |
---|---|---|
author | Daniel Leung <daniel.leung@intel.com> | Thu Sep 09 10:28:50 2021 -0700 |
committer | Christopher Friedt <chrisfriedt@gmail.com> | Thu Sep 09 19:06:38 2021 -0400 |
tree | d5d3de6381e5d72b27e2b0fe297dd062525bc41b | |
parent | 1672f6cea163d2a5e82703db74c54718918d124a [diff] |
samples: philosophers: fix pointer type mismatch for stack fork When using the stack fork type in the philosophers sample, there were a few pointer type mismatch since the k_stack_*() functions are using stack_data_t but the parameters are uint32_t. So cast them to void pointer to suppress compiler warnings. Signed-off-by: Daniel Leung <daniel.leung@intel.com>