Skip to content

Commit

Permalink
iox-#2209 Fix mq_timedreceive return type
Browse files Browse the repository at this point in the history
  • Loading branch information
khromenokroman committed Aug 30, 2024
1 parent a148771 commit d88b22c
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 @@ -57,7 +57,7 @@ inline ssize_t mq_receive(mqd_t mqdes, char* msg_ptr, size_t msg_len, unsigned i
return 0;
}

inline mqd_t
inline ssize_t
mq_timedreceive(mqd_t mqdes, char* msg_ptr, size_t msg_len, unsigned int* msg_prio, const struct timespec* abs_timeout)
{
return 0;
Expand Down

0 comments on commit d88b22c

Please sign in to comment.