Skip to content

Commit

Permalink
iox-#2209 Change return type of mq_receive to ssize_t
Browse files Browse the repository at this point in the history
  • Loading branch information
khromenokroman committed Aug 30, 2024
1 parent 35d6729 commit a148771
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion iceoryx_platform/win/include/iceoryx_platform/mqueue.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ inline int mq_close(mqd_t mqdes)
//{
//}

inline mqd_t mq_receive(mqd_t mqdes, char* msg_ptr, size_t msg_len, unsigned int* msg_prio)
inline ssize_t mq_receive(mqd_t mqdes, char* msg_ptr, size_t msg_len, unsigned int* msg_prio)
{
return 0;
}
Expand Down

0 comments on commit a148771

Please sign in to comment.