1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2024-12-29 04:50:03 +01:00

core: change type of msg.content.ptr to void*

This commit is contained in:
Kaspar Schleiser 2016-06-02 20:17:50 +02:00
parent 35077bb224
commit f0b44d5175

View File

@ -186,7 +186,7 @@ typedef struct {
by msg_send. */
uint16_t type; /**< Type field. */
union {
char *ptr; /**< Pointer content field. */
void *ptr; /**< Pointer content field. */
uint32_t value; /**< Value content field. */
} content; /**< Content of the message. */
} msg_t;