Commit c5f1a3bb authored by Federico Vaga's avatar Federico Vaga

include: make g++ happy by casting void pointer

Signed-off-by: Federico Vaga's avatarFederico Vaga <federico.vaga@cern.ch>
parent 6a39e935
......@@ -71,7 +71,7 @@ struct wrnc_proto_header {
*/
static inline struct wrnc_proto_header *rt_proto_header_get(void *raw_msg)
{
return raw_msg;
return (struct wrnc_proto_header *) raw_msg;
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment